- File.NewQuery - Ctrl+K, N
- Window.ShowResultsPane - Ctrl+K, R
// Outputting HTML | |
Util.RawHtml(String.Format("<h2>Testing worksheet '{0}'</h2>\n", worksheetName)).Dump(); |
; Alt-Shift-m | |
!+m:: | |
CoordMode, Mouse, Screen | |
; The following moves the cursor to the center of the "main" display: | |
;MouseMove, A_ScreenWidth/2, A_ScreenHeight/2, 0 | |
; The following moves the cursor to the top-left of the "main" display: | |
MouseMove, 1, 1, 0 |
Process: Electron Helper [1575] | |
Path: /Users/USER/*/LightTable.app/Contents/Frameworks/Electron Helper.app/Contents/MacOS/Electron Helper | |
Identifier: com.github.electron.helper | |
Version: 0 | |
Code Type: X86-64 (Native) | |
Parent Process: Electron [1573] | |
Responsible: Electron Helper [1575] | |
User ID: 501 | |
Date/Time: 2016-01-10 13:40:51.639 -0500 |
:s/\(\[\|\]\) |
[merge] | |
tool = diffmerge | |
[mergetool "diffmerge"] | |
trustExitCode = true | |
cmd = \"C:/Program Files/SourceGear/Common/DiffMerge/sgdm.exe\" --merge --result=\"$MERGED\" \"$LOCAL\" \"$BASE\" \"$REMOTE\" |
" Default settings | |
set nocompatible | |
source $VIMRUNTIME/vimrc_example.vim | |
source $VIMRUNTIME/mswin.vim | |
behave mswin | |
set diffexpr=MyDiff() | |
function! MyDiff() | |
let opt = '-a --binary ' |
Get-ChildItem -Path C:\@GitHub\LightTable\builds\lighttable-0.8.0-windows\resources\app\core\node_modules\lighttable -Recurse | | |
ForEach-Object { | |
$itemPath = $_.FullName | |
$acl = Get-Acl $itemPath | |
foreach ($accessRule in $acl.Access) | |
{ | |
if ($accessRule.AccessControlType -eq [System.Security.AccessControl.AccessControlType]::Deny -and $accessRule.IdentityReference.Value -eq "RECP\kevitt") | |
{ | |
$acl.RemoveAccessRule($accessRule) |
start .\packages\NUnit.Runners.2.6.3\tools\nunit.exe path_to_unit_test_assembly |
; Requiring a namespace file | |
(require '[this.is.the.relevant-namespace :as the-alias]) | |
; Reload a namespace file | |
(require 'this.is.the.relevant-namespace :reload-all) |