question-mark
Stuck on an issue?

Lightrun Answers was designed to reduce the constant googling that comes with debugging 3rd party libraries. It collects links to all the places you might be looking at while hunting down a tough bug.

And, if you’re still stuck at the end, we’re happy to hop on a call to see how we can help out.

Working with SublimeText 3 and Guake

See original GitHub issue

As the Readme says nothing about that: is this Plugin working with SublimeText 3? And if, how to get it working with the Guake Terminal?

Here is what write to sublime keymap, and changed the terminal setting to “guake”.

{ "keys": ["ctrl+alt+t"], "command": "open_terminal", "args": { "parameters": ["-n", "%CWD%"] } },

This toggles the visibilty of guake, but didn’t open a new tab.

Issue Analytics

  • State:closed
  • Created 8 years ago
  • Comments:5

github_iconTop GitHub Comments

1reaction
twolfsoncommented, Oct 13, 2015

Ah, I see the issue. Key bindings should not be receiving the requested parameters for executing the terminal. Instead, those should be stored under parameters in the Terminal settings. Try updating your configurations to the following:

// Key bindings
{ "keys": ["ctrl+alt+t"], "command": "open_terminal"}

// Terminal configuration
{
  "terminal": "guake",
  "parameters": ["-n", "%CWD%"]
}
0reactions
twolfsoncommented, Oct 13, 2015

That’s great to hear =)

Read more comments on GitHub >

github_iconTop Results From Across the Web

Command Line Interface - Sublime Text
Sublime Text includes a command line tool, subl , to work with files on the command line. This can be used to open...
Read more >
Sublime Text 3 Beta Available For Download ~ Web Upd8
Sublime Text 2 stable was released about 7 months ago and since then, its developer has been working on a new version: Sublime...
Read more >
Does Sublime Text Have A Terminal - What Is Mark Down
Yes, we can use the terminal in sublime text. To open the terminal, go to View > Show Console. Alternatively, we can use...
Read more >
Sublime Text - How to get OSX keyboard shortcut on linux or ...
and your new shortcuts should work as expected. Please not that when you are working with indented text, moving to the beginning of...
Read more >
Use the terminal in Sublime text 3 and 4 with terminus
Use the terminal in Sublime text 3 with terminus (I've upgraded to Sublime text 4 and it just worked like before, without having...
Read more >

github_iconTop Related Medium Post

No results found

github_iconTop Related StackOverflow Question

No results found

github_iconTroubleshoot Live Code

Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free

github_iconTop Related Reddit Thread

No results found

github_iconTop Related Hackernoon Post

No results found

github_iconTop Related Tweet

No results found

github_iconTop Related Dev.to Post

No results found

github_iconTop Related Hashnode Post

No results found