Skip to content

Instantly share code, notes, and snippets.

@uitk23009
uitk23009 / clear.css
Last active December 5, 2017 12:18
Adjust google chrome auto fill input background color
input:-webkit-autofill {
-webkit-box-shadow: 0 0 0 30px white inset;
}
@uitk23009
uitk23009 / dropdown.css
Created December 8, 2017 02:18
remove dropdown outline
.dropdown-item:focus, .dropdown-item:hover {
outline: 0;
}
@uitk23009
uitk23009 / set-in-for.vim
Created December 24, 2017 09:01
Using set command in for loop
for fpath in split(globpath(dict, '*.dic'), '\n')
exe 'set dictionary+='.fpath
endfor