Working with SublimeText 3 and Guake
See original GitHub issueAs 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:
- Created 8 years ago
- Comments:5
Top 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 >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found

Ah, I see the issue. Key bindings should not be receiving the requested parameters for executing the terminal. Instead, those should be stored under
parametersin theTerminalsettings. Try updating your configurations to the following:That’s great to hear =)