Sunday, May 24, 2009

The Keyboard

! exclamation
" double quote
# number sign
$ dollar
% Percent
& ampersand
' apostrophe
() parentheses/round brackets/curved brackets
* asterisk
+ plus
, comma
- hyphen/minus
. full stop/period/dot
/ slash
: colon
; semicolon
< less than
= equals
> greater than
? question
@ at
[] square brackets
\ backslash
^ caret
_ underscore
` grave accent
{} curly brackets/braces
| vertical bar
~ tilde 

Wednesday, May 13, 2009

vim, fullscreen, Remove menubar

map :call libcallnr("gvimfullscreen.dll", "ToggleFullScreen", 0)
Link:http://www.vim.org/scripts/script.php?script_id=2596#1.0

if has('gui_running') && has("win32")
au GUIEnter * simalt ~x
endif

set guioptions-=m "Remove menubar"
set guioptions-=T "Remove toolbar"
set guioptions-=r "Remove v_scroll bar"