Quantcast
Channel: Comfortable PHP editing with VIM -3-
Browsing latest articles
Browse All 37 View Live

Sam Rowe at Sat, 21 May 2005 22:40:30 +0200

VIM already maps 'k' to "look up the word under the cursor with man." So if the filetype is PHP, I set keywordprg to w3m pointed at php's manual. I described it here:...

View Article



Toby at Sun, 22 May 2005 16:42:04 +0200

Having a lookup of functions only when online sounds a bit odd, since I code most of the time when being offline, so the phpm solution is more convenient. Can you point me to that script on vim.org...

View Article

Sean Coates at Sun, 22 May 2005 17:20:43 +0200

You might find these interesting: http://cvs.php.net/co.php/phpdoc/funclist.txt?r=1.35 http://cvs.php.net/co.php/phpdoc/funcsummary.txt?r=1.27 S

View Article

Wez Furlong at Mon, 23 May 2005 16:58:00 +0200

I use this in my .vim/after/plugin/php.vim file (which gets sourced after all the regular stuff): augroup WezsPHPStuff au BufEnter *.php set complete-=k~/.vim/php-funclist.txt...

View Article

Cease to Desist. at Mon, 23 May 2005 22:18:59 +0200

Comfortable PHP editing with VIM -3- - Tobias Schlitt - Weblog Toby has done it again, with an even better .vimrc for people using “the one true editor” to write their code. The addition of phpm seems...

View Article


Toby at Mon, 23 May 2005 22:58:44 +0200

Inspired by a trackback from here: noremap ; :s/\([^;]\)$/\1;/ This will add a ; to the end of the current line, when there is none. This hack will definitly be part of my .vimrc 1.2.

View Article

Bryan at Tue, 24 May 2005 06:08:30 +0200

I'm having trouble using the folding.. the problem is that when I type a left brace, it automatically inserts a carriage return and creates a closing brace (which is good if I'm writing a function,...

View Article

Toby at Tue, 24 May 2005 09:03:23 +0200

Simply use CTRL-V + (/{/[/"/' to type only the opening part (as it's said in the article! :)

View Article


Bryan at Tue, 24 May 2005 17:26:48 +0200

Thanks.. I swear the CTRL-v wasn't working before.. I was just getting a visual block. It works fine now though.

View Article


Toby at Tue, 24 May 2005 17:38:10 +0200

Hmm... wired... Maybe you were in command mode (ctrl-v then indicates creating a visual block)? No matter, now it's working! :) Have fun! :)

View Article

mitjok at Tue, 21 Jun 2005 15:07:03 +0200

When I use code temlates, e.g. =cla, I get * doubled from the 2nd string: /** * * class * * @access * * @package * * @since * */

View Article

John Wellesz at Fri, 24 Jun 2005 00:22:24 +0200

If you want correct indenting for PHP with VIM you may be interested by my script: You can find a detail description of what it can do: http://www.vim.org/scripts/script.php?script_id=1120 or...

View Article

markus' blog at Tue, 26 Jul 2005 23:47:52 +0200

Tobias Schlitt has put together some really useful information how to enhance vim to you can get more productive with vim. Don't miss his articles: Comfortable PHP editing with VIM Comfortable PHP...

View Article


Will at Mon, 01 Aug 2005 12:36:17 +0200

I've downloaded the function list, and I located it on my disk two times in the .vimrc file and it doesn't work? I also seem to be getting: Error detected while processing /Users/william/.vimrc: line...

View Article

Toby at Mon, 01 Aug 2005 12:57:44 +0200

Looks like to tryed including the funclist instead of adding it to your dictionary...? The inclusion should look like this: set dictionary-=/home/dotxp/funclist.txt dictionary+=/home/dotxp/funclist.txt...

View Article


Peter Bowyer's weblog at Mon, 08 Aug 2005 22:26:20 +0200

OK, what's happened since my last post? Well, I've been busy coding, using the Zend IDE exclusively. It hasn't crashed once, although javaw.exe is taking up between 65 and 120Mb of RAM which is making...

View Article

John Wellesz at Tue, 09 Aug 2005 00:14:30 +0200

Ok, I have a good news for all PHP programmers: my script will be included by default in Vim 7 :-) http://www.vim.org/scripts/script.php?script_id=1120 John

View Article


Tobias Schlitt - a passion for php at Fri, 16 Sep 2005 16:23:51 +0200

It's nearly 4 month ago now, since I last blogged about my .vimrc (the main Vim config file) and the recent enhancements I added to it. This time, I go a step further as in the last 3 parts: I wrote my...

View Article

Adrian at Thu, 20 Oct 2005 20:05:51 +0200

Great stuff! But I think the funclist.txt of Rasmus is incomplete. I'm not sure what exactly is missing, but I grabbed all linked functions from http://php.net/manual/en and got nearly 1.500 functions...

View Article

Christian at Sat, 08 Jul 2006 18:19:38 +0200

Hey, don't you wanna upload your .vimrc again? :-) I would like it, Chris

View Article

Toby at Sat, 08 Jul 2006 19:32:10 +0200

Please look here for the latest version: http://www.schlitt.info/applications/blog/index.php?/archives/372-Comfortable-PHP-editing-with-VIM-4.html

View Article


Tobias Schlitt - a passion for php at Wed, 23 Aug 2006 16:41:19 +0200

More than a half year after my last "Comfortable PHP editing with VIM" post, I take up this series again, although I decided to let it die in January. Sadly I did not find any time by now, to extend...

View Article


Torgeir at Tue, 19 Sep 2006 15:13:43 +0200

This looks great! but as trying to find out how you did all this neat stuff i cant help to notice that your .vimrc-link is not working.. This would be of great help

View Article

Toby at Tue, 19 Sep 2006 15:17:19 +0200

You should look into the latest entry: http://schlitt.info/applications/blog/index.php?/archives/488-Comfortable-PHP-editing-with-VIM-5.html It has a link to my SVN.

View Article

Torgeir at Tue, 19 Sep 2006 15:26:46 +0200

oh, fast reply.. thanx :)

View Article


Tobias Schlitt - a passion for php at Sat, 30 Sep 2006 11:57:48 +0200

Yes, it's true, exactly 3 years ago I wrote my first blog entry. By that time I would never have imagined, that I would keep blogging for more than 3 years and that more or less constantly. My weblog...

View Article

Tobias Schlitt - a passion for php at Fri, 01 Dec 2006 11:49:42 +0100

Because I had a talk about how to use VIM in respect to PHP source code editing, I took the time during the week, to write some extensive documentation for PDV, the PHP Documentor plugin for VIM....

View Article

Tramadol cod. at Tue, 05 Feb 2008 12:45:14 +0100

Comparative potencies of opioids tramadol. Tramadol side affects. Tramadol.

View Article

CoreSh at Mon, 22 Dec 2008 08:34:45 +0100

The full Php functions updated method: # wget -qO - http://www.php.net/manual/en/indexes.php | grep '' | grep -oP '>(.*)\(\)

View Article



Toby at Wed, 10 Mar 2010 17:26:54 +0100

Note that VIP (containing the .vimrc) is now hosted on Github: http://github.com/tobyS/vip

View Article

programming help at Thu, 01 Apr 2010 11:57:38 +0200

Real comfortable)))

View Article

music file downloads at Thu, 20 May 2010 09:20:08 +0200

Great stuff, thanks for all the tips. I was hoping that you had been cooking up some improvements using VIM 7s omnicomplete feature. My experience with it thus far has been mixed, as it adds some...

View Article

Fran at Tue, 06 Dec 2011 16:48:39 +0100

Your link http://www.wiki.cc/php/Epc_phpm gives 404 error. :-(

View Article


instore sampling at Tue, 13 Mar 2012 14:16:31 +0100

Outstanding piece of work you have done. This type of post is rarely found. This site has proved its metals in the way of giving extra ordinary information.

View Article

instore sampling at Tue, 13 Mar 2012 15:34:02 +0100

you probably have invested a lot of time in the procedure and the downtime is really impressive. What interests me is one thing further - how did you make those nice picture for the tutorial. It's...

View Article

beauty tunics at Thu, 15 Mar 2012 09:04:23 +0100

Great write-up, I am a big believer in commenting on blogs to assist the weblog writers know that they’ve added one thing worthwhile to the world large net!Anyway, in my language, there aren’t a lot...

View Article


gutes online casino at Thu, 06 Sep 2012 08:27:42 +0200

It seems too complicated and very broad for me.

View Article

Browsing latest articles
Browse All 37 View Live




Latest Images