- not available yet
This file contains hidden or 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
let g:user_emmet_settings = { | |
\ 'indentation' : ' ', | |
\ 'lang' : 'ja', | |
\ 'custom_expands' : { | |
\ '^\%(lorem\|lipsum\)\(\d*\)$' | |
\ : function('emmet#lorem#ja#expand'), | |
\ } | |
\ } |
This file contains hidden or 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
#!/usr/bin/perl | |
# displays the 256 colors specified in tmux's "colourNN" way. | |
# June, 1st 2011 by Yasunori Taniike (@ytaniike). | |
use strict; | |
use warnings; | |
my $prefix_bl = "\x1b[38;5;0;48;5;"; | |
my $prefix_wl = "\x1b[38;5;15;48;5;"; | |
my $suffix = "\x1b[0m"; |