Monday, April 18, 2011

menuconfig

Add an entry to kernel config menu
** make sure library has been installed, "ncurses-devel"

/kernel source$ make clean
/kernel source$ make menuconfig

Friday, April 15, 2011

Change emacs theme

M-x load-library
color-theme
M-x color-theme-select

After you've selected a theme on the list then press ENTER

P.S. Place color-theme folder to ~/.emacs.d

Sunday, April 3, 2011

Tags with Emacs

For emacs you can't use the file, which is generated by ctags. You should use etags.

$ find -E . -iregex '.*\.(cpp|[ch])$' | etags -

Inside Emacs

M-x visit-tags-table <RET> FILE <RET>
M-. Find the first definition of TAG
M-* Pop back
C-u M-. Find the next definition



Reference:

Synopsis: