Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/jaykul/sublimeconemu
Add some helper commands for using Sublime with ConEmu (and PowerShell).
https://github.com/jaykul/sublimeconemu
Last synced: about 1 month ago
JSON representation
Add some helper commands for using Sublime with ConEmu (and PowerShell).
- Host: GitHub
- URL: https://github.com/jaykul/sublimeconemu
- Owner: Jaykul
- License: mit
- Created: 2014-10-03T05:31:11.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2015-06-05T18:04:23.000Z (over 9 years ago)
- Last Synced: 2024-10-28T10:20:17.933Z (3 months ago)
- Language: Python
- Size: 133 KB
- Stars: 3
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
Sublime ConEmu
==============Add some helper commands for using Sublime with ConEmu (and PowerShell).
In order to use the commands, you should to set hotkeys for them in your KeyBindings, so for instance, click `Preferences` and then `Key Bindings -- User` and paste this:
```
[
{ "keys": ["f5"], "command": "conemu_script" },
{ "keys": ["f8"], "command": "conemu_selection" },
]
```This is primarily written for PowerShell, and for best results, we use PSReadLine and rely on it's hotkeys. We need KillLine and Yank set so we can copy/paste any existing command, so you need to run these commands in your PowerShell profile:
```posh
Set-PSReadlineKeyHandler Ctrl+k KillLine
Set-PSReadlineKeyHandler Ctrl+i Yank
```### conemu_script (ConemuScriptCommand)
Invokes the path to the active file in the active ConEmu window
### conemu_selection (ConemuSelectionCommand)
Pastes the active line or selected text