-
set number
show line numbers -
:m 12
move current line to line 12 -
:5,8m 2
move lines 5-8 to after line 2 -
:!{command}
execute unix command from vim
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var gulp = require('gulp'), | |
sass = require('gulp-ruby-sass'), | |
autoprefix = require('gulp-autoprefixer'), | |
notify = require('gulp-notify'), | |
browserSync = require('browser-sync'), | |
reload = browserSync.reload | |
; | |
var config = { | |
sassPath: './resources/sass' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Show hidden characters
{ | |
"bold_folder_labels": false, | |
"binary_file_patterns": ["node_modules/"], | |
"caret_style": "phase", | |
"color_scheme": "Packages/User/SublimeLinter/itg.dark (SL).tmTheme", | |
"dictionary": "Packages/Language - English/en_GB.dic", | |
"font_face": "SourceCodePro-Regular", | |
"font_size": 15, | |
"highlight_line": true, | |
"ignored_packages": |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[ | |
{ "keys": ["ctrl+s"], "command": "sort_lines", "args": {"case_sensitive": false} }, | |
{ "keys": ["ctrl+shift+s"], "command": "sort_lines", "args": {"case_sensitive": true} }, | |
{ "keys": ["ctrl+d"], "command": "run_macro_file", "args": {"file": "res://Packages/Default/Delete Line.sublime-macro"} }, | |
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$ ab -n 5000 -c 333 http://redacted | |
This is ApacheBench, Version 2.3 <$Revision: 1528965 $> | |
Copyright 1996 Adam Twiss, Zeus Technology Ltd, http://www.zeustech.net/ | |
Licensed to The Apache Software Foundation, http://www.apache.org/ | |
Benchmarking 188.166.145.38 (be patient) | |
Completed 500 requests | |
Completed 1000 requests | |
Completed 1500 requests | |
Completed 2000 requests |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
zip <name>.zip -r * .[^.]* -x '*.git*' -x '*.DS_Store' -x bootstrap/cache -x storage/framework/cache -x storage/framework/views -x storage/logs -x vendor -x tests -x .env |