Scripts posted recently tagged to emacs in Kelpi

1- 4 of 4.

Generate CTAGS file with etags

to emacs ctags etags by jonbaine

#Generate CTAGS file for emacs / vim use... with exhuberant ctags
etags -R
#:D

Regex replace

to regex emacs by mikel

(\('[^']*'\)\, \('[^']*'\))) -> (\1, \2, _(u\2))):

utf8 and more, emacs configuration .emacs

to utf8 emacs setup by nando.quintana

(add-hook 'find-file-hooks 'turn-on-font-lock)
(add-to-list 'auto-mode-alist '("\\.zpt$" . html-mode))
(add-to-list 'auto-mode-alist '("\\.pt$" . html-mode))
(add-to-list 'auto-mode-alist '("\\.zcml$" . html-mode))
(add-to-list 'auto-mode-alist '("\\.dtml$" . html-mode))

emacs shortcuts

to emacs python shortcut by mikel

(fset 'break
      "import pdb;pdb.set_trace()\n")
(fset 'log
      "\nfrom logging import getLogger\nlog = getLogger('')\n\n")
(setq python-mode-hook
hits counter