markdown with sublime text

markdown syntax plugin MarkdownEditing is syntax highlighting and Markdown editing plugin. install MarkdownEditing ctrl+shift+p open command panel type Install Package type MarkdownEditing dark theme The default markdown theme is grey, I prefer dark theme so this is how to change it. Preferences/Package settings/Markdown Editing/Markdown (Standard).sublime-settings, add line you can find …

npp dark theme

npp dark theme Notepad++ has very good theme/style design tool – Style Configurator, you can highly customize style based on predefined theme. how to customize npp theme I prefer Bespin dark theme however not happy with existing styles, cannot tolerate the light green, pink, black text on dark background, so …

portable npp markdown

portable npp download latest npp in 7z from here extract it to your portable folder, such as C:\portableapps\npp. markdown syntax highlight By default there is not markdown syntax highlight in npp, Thanks Edditoria shared few dark themes here. I prefer Bespin dark theme for npp so changed markdown style with …

npp plugin manager

npp plugin manager The npp plugin manager not included in latest npp x64 release. Found the plugin manager PluginManager_v1.4.9_x64.zip in github. There are 2 files in zip: – plugins/PluginManager.dll – updater/gpup.exe so installation is strightforward, copy two files to npp subfolder plugins and updater, restart npp. launch plugin manager From …

scite spell check

It is simplified spell check tool orthospell installation for scite. Based on: Urs Eberle’s orthospell http://tools.diorama.ch/orthospell.html (GNU GPL v2). download spell-check bundle download scite-spell.zip, it includes: scite_lua\orthospell.lua en_US.aff en_US.dic extman.lua hunspell.dll shell.dll extract and copy above stuff to scite root folder, only needs default US English dictionary. spell check config …

portable sublime Go IDE

My portable sublime located at C:\oldhorse\portableapps\SublimeText3. solution1 – batch job to handle build and run This is my small script, no any plugin needed for simply test Go code. First part is rungo.bat, handle build and run two steps. C:\oldhorse\portableapps\SublimeText3\Data\Packages\User\rungo.bat then call it from go.sublime-build at C:\oldhorse\portableapps\SublimeText3\Data\Packages\User You can choice …

scite dark theme

Scite Scite is most lightweight editor and portable by nature, it is my favorite quick note and code for long time, only 3MB. scite dark theme Here is scite dark theme, I adopted from some old web post. You can append to end of SciTEGlobal.properties or place to SciTEUser.properties, I …

cmder copy/paste in vim

cmder select text / copy is simple, just select text using left mouse, it is in clipboard, so you can paste using ctrl-V or right mouse. But default it is not working in vim, found this is reason: cmder settings->Keys&Macro->Mark/Copy->Select text with mouse->Exceptions: far|vim.exe means vim.exe is in exception list, …