How to reset split screen to default in Notepad++
Right click on the tab and the choose “Move to Other View” This works for me on npp v6.6.9
Right click on the tab and the choose “Move to Other View” This works for me on npp v6.6.9
Open Settings -> Style Configurator, select “XML” in “Language” list, add “csproj” (without quotes) to “User ext” box.
Quick solution Move the focus to the file browser (⌥⌘⇥) and show invisibles (⌥⌘i)(key names: option/alt+command/windows+i/eye). All invisible files will appear in the file browser. Press ⌥⌘i again to hide them. Permanent solution If you want to always show some dotfiles (for instance .htaccess), you can either add them in Preferences > Projects > Include … Read more
I find the Script package useful for this. You can download it here. Once installed you can run scripts in many languages directly from Atom using cmd-i on Mac or shift-ctrl-b on Windows or Linux.
Escape puts you into command mode; i takes you back out.
As already suggested, you can use autochdir, which will change to the directory of the file you opened, the other option is :cd mydirectory which will change the directory. This can be an absolute or relative path, so :cd .. will move up one level. Or you can use :cd %:h which will also change … Read more
Why not use notepad? notepad.exe filename.txt The old edit.com works in PowerShell (at least on my box: Windows 7 Pro x86) but in x64 it doesn’t work due to its 16bit architecture. You can take a look at this easy editor.
I think the practice of keeping code to 80 (or 79) columns was originally created to support people editing code on 80-column dumb terminals or on 80-column printouts. Those requirement have mostly gone away now, but there are still valid reasons to keep the 80 column rule: To avoid wrapping when copying code into email, … Read more