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
// create a dictionary | |
var dictionary = { "key1" : "val2" }; | |
// cast to string | |
var dictionary_string = JSON.stringify(dictionary); | |
// save in local storage | |
localStorage.setItem("my",dictionary_string); | |
// read back from local storage |
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:ctrlspace_use_tabline=2 | |
let g:ctrlspace_unicode_font=0 | |
let g:ctrlspace_use_tabline=0 | |
if exists("+showtabline") | |
function GoBuffer(direction) | |
let direction = a:direction | |
let t_current = tabpagenr() | |
let b_current = bufnr('%') |
NewerOlder