Having autocompletion (and some other nice stuff) for Python in VIM is not only a nice feature, but something allowing you to be more efficient when programming Python. First see the result: Youtube: http://www.youtube.com/watch?v=TNMjbaimk9g To make the functionality (and color scheme) available, download the tarball (pythonVim.tar.gz) and extract it in your home directory (i.e. /home/your_user_name), …
Continue reading Python autocompletion in VIM
Tag:Editor
Let VIM open file at last editing position
Simply put the following lines to your ~/.vimrc and all files will be opend at the last editing position. Saves a lot of searching time. 😉 if has(“autocmd”) au BufReadPost * if line(“‘\””) > 1 && line(“‘\””) <= line(“$”) | exe “normal! g’\”” | endif endif
Eclipse: PHP Code Formatter anpassen
Ein häufiges Problem in Eclipse PDT ist es, dass sich der Code Formatter, welchen man mittels STRG+SHIFT+F aufruft nicht (wie beispielsweise für Java) konfigurieren und an den eigenen Coding Standard anpassen läßt. Unter “Window“->”Preferences“->”PHP“->”Code Style“->”Formatter” kann man leider lediglich die verwendete Tab Policy (Spaces oder Tabs) anpassen. Wann beispielsweise Zeilenumbrüche oder Einrückungen eingefügt werden sollen, …
Continue reading Eclipse: PHP Code Formatter anpassen
Neues Tutorial: “Eclipse: PHP Code Formatter anpassen”
Auf meiner Suche nach hilfreichen Plugins/Tools zum Arbeiten mit Eclipse und dem Editieren von PHP Dateien bin ich nun auf den PDT Tools Formatter gestoßen. Dieser erlaubt es dem Code Formatter (welchen man mittels STRG+SHIFT+F aufruft) eigene Regeln zuzuweisen, bzw. die vorhanden an eigene Bedürfnisse anzupassen. Wie man den PDT Tools Formatter installiert und ein …
Continue reading Neues Tutorial: “Eclipse: PHP Code Formatter anpassen”