Posts

Showing posts with the label sublime-text

Intel Quick Access breaks Sublime Text Hot Keys

Image
CTRL-ALT-UP and CTLR-ALT-DOWN are two hotkeys that I use *all the time*. They’re used in Sublime to execute multi-select on the previous/next line. Mulit-select is one of those features that is difficult to live without once you’ve experienced it and when I set up my new laptop the shortcuts didn’t work correctly. As it happens those same shortcuts were kidnapped by Intel’s graphic features. What once made me productive was instead hijacked to rotate my display clockwise and counter-clockwise (not something that the majority of people would need a hotkey for, but I digress…) Anyhow, one would assume that disabling hot keys via Intel’s Graphics Options menu would do the trick, but alas it did not. Instead it is necessary to override each hotkey via Intel’s HD Graphics Control Panel (thanks a lot, Intel) I’m back to running at full speed with keyboard-invoked multi-select in tow. Happiness.

Sublime Text 3, SublimeREPL and CLISP

You may get the following file not found error when attempting to combine CLISP (I installed via MacPorts, but I'm guessing this works the same for homebrew...) with SublimeREPL in Sublime Text 3 on OSX. FileNotFoundError(2, "No such file or directory: 'clisp'") Essentially, you need to tell SublimeREPL where to find the CLISP binaries. Simply add the following line to your SublimeREPL user configuration file (Sublime Text->Preferences->Package Settings->SublimeREPL->Settings - User) "default_extend_env": {"PATH": "{PATH}:/opt/local/bin"}