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
"3.10.1 (created: 2015/08/25 00:41:59) | |
highlight CmdLine background: white; color: black; transition: all 0.25s; font-size:16px | |
highlight Hint font-family: monospace; font-size: 10px; font-weight: bold; text-transform: uppercase; color: white; background-color: red; border-color: ButtonShadow; border-width: 0px; border-style: solid; padding: 0px 1px 0px 1px; font-size:15px; | |
nnoremap l gt | |
nnoremap h gT | |
nnoremap j 15j | |
nnoremap k 15k | |
nnoremap ,p :emenu<Space>File.New<Space>Private<Space>Window<Return> | |
nnoremap ,o :open<Space>about:preferences#advanced<Return> |
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
name: "TypeScript" | |
scopeName: "source.ts" | |
fileTypes: [ | |
"ts" | |
] | |
uuid: "ef98eb90-bf9b-11e4-bb52-0800200c9a66" | |
patterns: [ | |
{ | |
include: "#expression" | |
} |
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
from https://forum.manjaro.org/t/error-on-virtualbox-on-manjaro-linux/2528 | |
in a terminal do | |
uname -a | |
it will show something like this Linux user 4.6.0-1-MANJARO #1 SMP PREEMPT Mon May 16 02:44:59 2016 x86_64 GNU/Linux | |
In bold is your kernel version, so install the virtualbox host modules for your kernel number replacing 46 with what your output showed from the above. |
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
1) | |
#fix Ctrl +c and Ctrl + v in pentadactyl | |
#http://superuser.com/a/229030/473587 | |
#use this commands to fix it | |
noremap <C-v> <C-v><C-v> | |
inoremap <C-v> <C-v><C-v> | |
cnoremap <C-v> <C-v><C-v> | |
noremap <C-c> <C-v><C-c> |
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
"hg7290 | |
loadplugins '\.(js|penta)$' | |
group user | |
map -count -modes=n,v <C-v> -builtin <count><C-v><C-v> | |
map -count -modes=n h -builtin <count>gT | |
map -count -modes=n l -builtin <count>gt | |
map -count -modes=n,v <C-c> -builtin <count><C-v><C-c> | |
map -count -modes=c <C-v> -builtin <C-v><C-v> | |
map -count -modes=c <C-c> -builtin <C-v><C-c> |
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
http://stackoverflow.com/a/26763766/4146943 | |
f yes this error probably came out because adb from genymotion conflicted with your adb from android SDK(using same port number), to fix this simply go to settings => choose ADB tab => click on option Use custom Android SDK Tools and set your SDK folder |
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 fs = require('fs'); | |
var pathSep = require('path').sep; | |
var directory = module.exports = {}; | |
directory.mkdirSync = function __directory_mkdirSync__(path) { | |
var dirs = path.split(pathSep); | |
var root = ""; |
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
"3.14.0 (created: 2016/06/07 23:58:16) | |
highlight CmdLine background: white; color: black; transition: all 0.25s; font-size:16px | |
highlight Hint font-family: monospace; font-size: 10px; font-weight: bold; text-transform: uppercase; color: white; background-color: red; border-color: ButtonShadow; border-width: 0px; border-style: solid; padding: 0px 1px 0px 1px; font-size:15px; | |
nnoremap l gt | |
nnoremap h gT | |
nnoremap j 15j | |
nnoremap k 15k | |
nnoremap ,p :emenu<Space>File.New<Space>Private<Space>Window<Return> | |
nnoremap ,o :open<Space>about:preferences#advanced<Return> |
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
"3.14.0 (created: 2016/06/07 23:58:16) | |
highlight CmdLine background: white; color: black; transition: all 0.25s; font-size:16px | |
highlight Hint font-family: monospace; font-size: 10px; font-weight: bold; text-transform: uppercase; color: white; background-color: red; border-color: ButtonShadow; border-width: 0px; border-style: solid; padding: 0px 1px 0px 1px; font-size:15px; | |
nnoremap l gt | |
nnoremap h gT | |
nnoremap j 15j | |
nnoremap k 15k | |
nnoremap ,p :emenu<Space>File.New<Space>Private<Space>Window<Return> | |
nnoremap ,o :open<Space>about:preferences#advanced<Return> |
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
youtube-dl -o "%(playlist_index)s-%(title)s.%(ext)s" --external-downloader "aria2c" --external-downloader-args "-x 16" <youtube_play_list_link> |
OlderNewer