2007年03月14日 星期三 21:01
ÈçÌâ¡£ ÐèÒªÏÂÔØÄÄЩ²å¼þ£¬ÔõôÓã¿ -------------- 下一部分 -------------- Ò»¸öHTML¸½¼þ±»ÒƳý... URL: http://python.cn/pipermail/python-chinese/attachments/20070314/61eb61a2/attachment.html
2007年03月14日 星期三 21:12
ÎÒÔÚÓÃpythoncomplete¡£²»¹ý²»ÂúÒâ¡£ On 3/14/07, ÕÅÈý <zhangxufeng在gmail.com> wrote: > > ÈçÌâ¡£ > ÐèÒªÏÂÔØÄÄЩ²å¼þ£¬ÔõôÓã¿ > > _______________________________________________ > python-chinese > Post: send python-chinese在lists.python.cn > Subscribe: send subscribe to python-chinese-request在lists.python.cn > Unsubscribe: send unsubscribe to python-chinese-request在lists.python.cn > Detail Info: http://python.cn/mailman/listinfo/python-chinese > -- ×¢ÒâÉíÌ壬ÉíÌåÊǸïÃüµÄ±¾Ç®£¡£¡ -------------- 下一部分 -------------- Ò»¸öHTML¸½¼þ±»ÒƳý... URL: http://python.cn/pipermail/python-chinese/attachments/20070314/fa1fb184/attachment.html
2007年03月14日 星期三 22:04
主要是要有ctags和taglist,至于PythonFold则可有可无,感觉速度非常慢。而ctags和taglist又不是专用给Python的,都可以用。记得以前用过一个python_helper,简直就是垃圾。 -- 从前有一只很冷的毛毛虫,他想获得一点温暖。而获得温暖的机会只有从树上掉下来,落进别人的领口。 片刻的温暖,之后便失去生命。而很多同类却连这片刻的温暖都没有得到就.. 我会得到温暖么?小心翼翼的尝试,却还是会受到伤害。 我愿为那一刻的温暖去拼,可是谁愿意接受? 欢迎访问偶的博客: http://blog.csdn.net/gashero
2007年03月14日 星期三 22:25
在vim的安装目录里面有一个syntax的文件夹,里面有python.vim的python语法文件,如果一般的编辑这个文件就足够了,如果觉着功能不够,可以在这个里面加入一些自己想要的键映射,下面是我在这个文件里面加入的键映射: imap [ []imap ( () map :!python %^M map :shell^M imap for for in :^[bhi imap if if : imap def def (^[A:^[bi
2007年03月14日 星期三 22:52
On 3/14/07, 张三 <zhangxufeng at gmail.com> wrote: > > 如题。 > 需要下载哪些插件,怎么用? 千万要装 python_fold.vim,非常有用 ,我还装了个 project.vim ,还有块注释的插件:nerd_comments.vim。 另外别忘了配置 set ai sw=4 sts=4 et tw=72 。 另外还有这个配置: " Toggle fold state between closed and opened. " " If there is no fold at current line, just moves forward. " If it is present, reverse it's state. fun! ToggleFold() if foldlevel('.') == 0 normal! l else if foldclosed('.') < 0 . foldclose else . foldopen endif endif " Clear status line echo endfun " Map this function to Space key. noremap:call ToggleFold() 使用空格来打开(关闭)fold,用 python_fold 会更爽。 vim 有很多 tips ,你自己去搜 python 吧。 最后,vim的问题请到 http://groups.google.com/group/vim-cn 讨论。 > 至于PythonFold则可有可无,感觉速度非常慢。 我感觉速度上一点影响都感觉不到,我可还是128m内存的机器哦。 -- http://codeplayer.blogspot.com/ -------------- next part -------------- An HTML attachment was scrubbed... URL: http://python.cn/pipermail/python-chinese/attachments/20070314/5580c2cb/attachment.htm
2007年03月15日 星期四 07:46
vim7.0ÀïÃæÓÐpythonÓï·¨¸ßÁÁ°¡£¬ctrl+nÌáʾÊäÈëÒ²¹»ÓÃÁË On 3/14/07, yi huang <yi.codeplayer在gmail.com> wrote: > > On 3/14/07, ÕÅÈý <zhangxufeng在gmail.com> wrote: > > > > ÈçÌâ¡£ > > ÐèÒªÏÂÔØÄÄЩ²å¼þ£¬ÔõôÓã¿ > > > ǧÍòҪװ python_fold.vim£¬·Ç³£ÓÐÓà £¬ÎÒ»¹×°Á˸ö project.vim £¬»¹Óпé×¢Ê͵IJå¼þ£ºnerd_comments.vim¡£ > ÁíÍâ±ðÍüÁËÅäÖà set ai sw=4 sts=4 et tw=72 ¡£ > ÁíÍ⻹ÓÐÕâ¸öÅäÖ㺠> > " Toggle fold state between closed and opened. > " > " If there is no fold at current line, just moves forward. > " If it is present, reverse it's state. > fun! ToggleFold() > if foldlevel('.') == 0 > normal! l > else > if foldclosed('.') < 0 > . foldclose > else > . foldopen > endif > endif > " Clear status line > echo > endfun > > " Map this function to Space key. > noremap:call ToggleFold() > > ʹÓÿոñÀ´´ò¿ª£¨¹Ø±Õ£©fold£¬Óà python_fold »á¸üˬ¡£ > > vim Óкܶà tips £¬Äã×Ô¼ºÈ¥ËÑ python °É¡£ > > ×îºó£¬vimµÄÎÊÌâÇëµ½ http://groups.google.com/group/vim-cn ÌÖÂÛ¡£ > > > > ÖÁÓÚPythonFoldÔò¿ÉÓпÉÎÞ£¬¸Ð¾õËٶȷdz£Âý¡£ > > > ÎҸоõËÙ¶ÈÉÏÒ»µãÓ°Ï춼¸Ð¾õ²»µ½£¬ÎÒ¿É»¹ÊÇ128mÄÚ´æµÄ»úÆ÷Ŷ¡£ > > -- > http://codeplayer.blogspot.com/ > > _______________________________________________ > python-chinese > Post: send python-chinese在lists.python.cn > Subscribe: send subscribe to python-chinese-request在lists.python.cn > Unsubscribe: send unsubscribe to python-chinese-request在lists.python.cn > Detail Info: http://python.cn/mailman/listinfo/python-chinese > -- Steve Chu http://stvchu.org -------------- 下一部分 -------------- Ò»¸öHTML¸½¼þ±»ÒƳý... URL: http://python.cn/pipermail/python-chinese/attachments/20070315/d856fb22/attachment.html
2007年03月15日 星期四 16:04
谢谢,我是初学者。 以前没编过程。 在 Thu, 15 Mar 2007 07:46:48 +0800,Steve Chu <stvchu在gmail.com> 写道: > vim7.0里面有python语法高亮啊,ctrl+n提示输入也够用了 > > On 3/14/07, yi huang <yi.codeplayer在gmail.com> wrote: >> >> On 3/14/07, 张三 <zhangxufeng在gmail.com> wrote: >> > >> > 如题。 >> > 需要下载哪些插件,怎么用? >> >> >> 千万要装 python_fold.vim,非常有用 ,我还装了个 project.vim ,还有块注释 >> 的插件:nerd_comments.vim。 >> 另外别忘了配置 set ai sw=4 sts=4 et tw=72 。 >> 另外还有这个配置: >> >> " Toggle fold state between closed and opened. >> " >> " If there is no fold at current line, just moves forward. >> " If it is present, reverse it's state. >> fun! ToggleFold() >> if foldlevel('.') == 0 >> normal! l >> else >> if foldclosed('.') < 0 >> . foldclose >> else >> . foldopen >> endif >> endif >> " Clear status line >> echo >> endfun >> >> " Map this function to Space key. >> noremap:call ToggleFold() >> >> 使用空格来打开(关闭)fold,用 python_fold 会更爽。 >> >> vim 有很多 tips ,你自己去搜 python 吧。 >> >> 最后,vim的问题请到 http://groups.google.com/group/vim-cn 讨论。 >> >> >> > 至于PythonFold则可有可无,感觉速度非常慢。 >> >> >> 我感觉速度上一点影响都感觉不到,我可还是128m内存的机器哦。 >> >> -- >> http://codeplayer.blogspot.com/ >> >> _______________________________________________ >> python-chinese >> Post: send python-chinese在lists.python.cn >> Subscribe: send subscribe to python-chinese-request在lists.python.cn >> Unsubscribe: send unsubscribe to python-chinese-request在lists.python.cn >> Detail Info: http://python.cn/mailman/listinfo/python-chinese >> > > > -- 使用 Opera 革命性的电子邮件客户程序: http://www.opera.com/mail/
2007年03月15日 星期四 16:24
ÈçºÎ±à¼£¿£¿ÕâÓÐѧÎÊѽ¡£ ¾ÍÊÇset ft=python¾Í¿ÉÒÔÁË¡£²»Ë¬Â¾Í¼Ó¶à¼¸¸öÉèÖ᣿´ÄãµÄÒªÇóÁË¡£ÄãÕÒÒ»ÏÂÈ˼ÒÓõÄvim½Å±¾°É¡£ On 3/15/07, ÕÅÈý·å <zhangxufeng在gmail.com> wrote: > > лл£¬ÎÒÊdzõѧÕß¡£ > ÒÔǰû±à¹ý³Ì¡£ > > ÔÚ Thu, 15 Mar 2007 07:46:48 +0800£¬Steve Chu <stvchu在gmail.com> дµÀ: > > > vim7.0ÀïÃæÓÐpythonÓï·¨¸ßÁÁ°¡£¬ctrl+nÌáʾÊäÈëÒ²¹»ÓÃÁË > > > > On 3/14/07, yi huang <yi.codeplayer在gmail.com> wrote: > >> > >> On 3/14/07, ÕÅÈý <zhangxufeng在gmail.com> wrote: > >> > > >> > ÈçÌâ¡£ > >> > ÐèÒªÏÂÔØÄÄЩ²å¼þ£¬ÔõôÓã¿ > >> > >> > >> ǧÍòҪװ python_fold.vim£¬·Ç³£ÓÐÓà £¬ÎÒ»¹×°Á˸ö project.vim £¬»¹Óпé×¢ÊÍ > >> µÄ²å¼þ£ºnerd_comments.vim¡£ > >> ÁíÍâ±ðÍüÁËÅäÖà set ai sw=4 sts=4 et tw=72 ¡£ > >> ÁíÍ⻹ÓÐÕâ¸öÅäÖ㺠> >> > >> " Toggle fold state between closed and opened. > >> " > >> " If there is no fold at current line, just moves forward. > >> " If it is present, reverse it's state. > >> fun! ToggleFold() > >> if foldlevel('.') == 0 > >> normal! l > >> else > >> if foldclosed('.') < 0 > >> . foldclose > >> else > >> . foldopen > >> endif > >> endif > >> " Clear status line > >> echo > >> endfun > >> > >> " Map this function to Space key. > >> noremap:call ToggleFold() > >> > >> ʹÓÿոñÀ´´ò¿ª£¨¹Ø±Õ£©fold£¬Óà python_fold »á¸üˬ¡£ > >> > >> vim Óкܶà tips £¬Äã×Ô¼ºÈ¥ËÑ python °É¡£ > >> > >> ×îºó£¬vimµÄÎÊÌâÇëµ½ http://groups.google.com/group/vim-cn ÌÖÂÛ¡£ > >> > >> > >> > ÖÁÓÚPythonFoldÔò¿ÉÓпÉÎÞ£¬¸Ð¾õËٶȷdz£Âý¡£ > >> > >> > >> ÎҸоõËÙ¶ÈÉÏÒ»µãÓ°Ï춼¸Ð¾õ²»µ½£¬ÎÒ¿É»¹ÊÇ128mÄÚ´æµÄ»úÆ÷Ŷ¡£ > >> > >> -- > >> http://codeplayer.blogspot.com/ > >> > >> _______________________________________________ > >> python-chinese > >> Post: send python-chinese在lists.python.cn > >> Subscribe: send subscribe to python-chinese-request在lists.python.cn > >> Unsubscribe: send unsubscribe to > python-chinese-request在lists.python.cn > >> Detail Info: http://python.cn/mailman/listinfo/python-chinese > >> > > > > > > > > > > -- > ʹÓà Opera ¸ïÃüÐԵĵç×ÓÓʼþ¿Í»§³ÌÐò: http://www.opera.com/mail/ > _______________________________________________ > python-chinese > Post: send python-chinese在lists.python.cn > Subscribe: send subscribe to python-chinese-request在lists.python.cn > Unsubscribe: send unsubscribe to python-chinese-request在lists.python.cn > Detail Info: http://python.cn/mailman/listinfo/python-chinese -- ×¢ÒâÉíÌ壬ÉíÌåÊǸïÃüµÄ±¾Ç®£¡£¡ -------------- 下一部分 -------------- Ò»¸öHTML¸½¼þ±»ÒƳý... URL: http://python.cn/pipermail/python-chinese/attachments/20070315/0510293e/attachment.html
2007年03月15日 星期四 16:37
Ä¿Ç°ÕýÔÚѧvimµÄ½Å±¾¡£ÏëÓÃpythonдvimµÄ½Å±¾£¬Ê¹ËüÄÜ×î´óµØÂú×ã×Ô¼ºµÄÒªÇó¡£ On 3/15/07, jessinio smith <jessinio在gmail.com> wrote: > > ÈçºÎ±à¼£¿£¿ÕâÓÐѧÎÊѽ¡£ > > ¾ÍÊÇset ft=python¾Í¿ÉÒÔÁË¡£²»Ë¬Â¾Í¼Ó¶à¼¸¸öÉèÖ᣿´ÄãµÄÒªÇóÁË¡£ÄãÕÒÒ»ÏÂÈ˼ÒÓõÄvim½Å±¾°É¡£ > > On 3/15/07, ÕÅÈý·å <zhangxufeng在gmail.com > wrote: > > > > лл£¬ÎÒÊdzõѧÕß¡£ > > ÒÔǰû±à¹ý³Ì¡£ > > > > ÔÚ Thu, 15 Mar 2007 07:46:48 +0800£¬Steve Chu < stvchu在gmail.com> дµÀ: > > > > > vim7.0ÀïÃæÓÐpythonÓï·¨¸ßÁÁ°¡£¬ctrl+nÌáʾÊäÈëÒ²¹»ÓÃÁË > > > > > > On 3/14/07, yi huang <yi.codeplayer在gmail.com> wrote: > > >> > > >> On 3/14/07, ÕÅÈý <zhangxufeng在gmail.com> wrote: > > >> > > > >> > ÈçÌâ¡£ > > >> > ÐèÒªÏÂÔØÄÄЩ²å¼þ£¬ÔõôÓã¿ > > >> > > >> > > >> ǧÍòҪװ python_fold.vim£¬·Ç³£ÓÐÓà £¬ÎÒ»¹×°Á˸ö project.vim £¬»¹Óпé×¢ÊÍ > > >> µÄ²å¼þ£ºnerd_comments.vim¡£ > > >> ÁíÍâ±ðÍüÁËÅäÖà set ai sw=4 sts=4 et tw=72 ¡£ > > >> ÁíÍ⻹ÓÐÕâ¸öÅäÖ㺠> > >> > > >> " Toggle fold state between closed and opened. > > >> " > > >> " If there is no fold at current line, just moves forward. > > >> " If it is present, reverse it's state. > > >> fun! ToggleFold() > > >> if foldlevel('.') == 0 > > >> normal! l > > >> else > > >> if foldclosed('.') < 0 > > >> . foldclose > > >> else > > >> . foldopen > > >> endif > > >> endif > > >> " Clear status line > > >> echo > > >> endfun > > >> > > >> " Map this function to Space key. > > >> noremap:call ToggleFold() > > >> > > >> ʹÓÿոñÀ´´ò¿ª£¨¹Ø±Õ£©fold£¬Óà python_fold »á¸üˬ¡£ > > >> > > >> vim Óкܶà tips £¬Äã×Ô¼ºÈ¥ËÑ python °É¡£ > > >> > > >> ×îºó£¬vimµÄÎÊÌâÇëµ½ http://groups.google.com/group/vim-cn ÌÖÂÛ¡£ > > >> > > >> > > >> > ÖÁÓÚPythonFoldÔò¿ÉÓпÉÎÞ£¬¸Ð¾õËٶȷdz£Âý¡£ > > >> > > >> > > >> ÎҸоõËÙ¶ÈÉÏÒ»µãÓ°Ï춼¸Ð¾õ²»µ½£¬ÎÒ¿É»¹ÊÇ128mÄÚ´æµÄ»úÆ÷Ŷ¡£ > > >> > > >> -- > > >> http://codeplayer.blogspot.com/ > > >> > > >> _______________________________________________ > > >> python-chinese > > >> Post: send python-chinese在lists.python.cn > > >> Subscribe: send subscribe to python-chinese-request在lists.python.cn > > >> Unsubscribe: send unsubscribe to > > python-chinese-request在lists.python.cn > > >> Detail Info: http://python.cn/mailman/listinfo/python-chinese > > >> > > > > > > > > > > > > > > > > > -- > > ʹÓà Opera ¸ïÃüÐԵĵç×ÓÓʼþ¿Í»§³ÌÐò: http://www.opera.com/mail/ > > _______________________________________________ > > python-chinese > > Post: send python-chinese在lists.python.cn > > Subscribe: send subscribe to python-chinese-request在lists.python.cn > > Unsubscribe: send unsubscribe to python-chinese-request在lists.python.cn > > Detail Info: http://python.cn/mailman/listinfo/python-chinese > > > > > -- > ×¢ÒâÉíÌ壬ÉíÌåÊǸïÃüµÄ±¾Ç®£¡£¡ -- ×¢ÒâÉíÌ壬ÉíÌåÊǸïÃüµÄ±¾Ç®£¡£¡ -------------- 下一部分 -------------- Ò»¸öHTML¸½¼þ±»ÒƳý... URL: http://python.cn/pipermail/python-chinese/attachments/20070315/d80acb78/attachment-0001.htm
2007年03月15日 星期四 21:55
听了介绍用了ulipad,但按F5老是说错误:你没有设置python解释器,参数设置里要 怎么样设置才行呢? 在 Thu, 15 Mar 2007 16:37:25 +0800,jessinio smith <jessinio在gmail.com> 写 道: > 目前正在学vim的脚本。想用python写vim的脚本,使它能最大地满足自己的要求。 > > > On 3/15/07, jessinio smith <jessinio在gmail.com> wrote: >> >> 如何编辑??这有学问呀。 >> >> 就是set ft=python就可以了。不爽嘛,就加多几个设置。看你的要求了。你找一 >> 下人家用的vim脚本吧。 >> >> On 3/15/07, 张三峰 <zhangxufeng在gmail.com > wrote: >> > >> > 谢谢,我是初学者。 >> > 以前没编过程。 >> > >> > 在 Thu, 15 Mar 2007 07:46:48 +0800,Steve Chu < stvchu在gmail.com> 写 >> 道: >> > >> > > vim7.0里面有python语法高亮啊,ctrl+n提示输入也够用了 >> > > >> > > On 3/14/07, yi huang <yi.codeplayer在gmail.com> wrote: >> > >> >> > >> On 3/14/07, 张三 <zhangxufeng在gmail.com> wrote: >> > >> > >> > >> > 如题。 >> > >> > 需要下载哪些插件,怎么用? >> > >> >> > >> >> > >> 千万要装 python_fold.vim,非常有用 ,我还装了个 project.vim ,还有 >> 块注释 >> > >> 的插件:nerd_comments.vim。 >> > >> 另外别忘了配置 set ai sw=4 sts=4 et tw=72 。 >> > >> 另外还有这个配置: >> > >> >> > >> " Toggle fold state between closed and opened. >> > >> " >> > >> " If there is no fold at current line, just moves forward. >> > >> " If it is present, reverse it's state. >> > >> fun! ToggleFold() >> > >> if foldlevel('.') == 0 >> > >> normal! l >> > >> else >> > >> if foldclosed('.') < 0 >> > >> . foldclose >> > >> else >> > >> . foldopen >> > >> endif >> > >> endif >> > >> " Clear status line >> > >> echo >> > >> endfun >> > >> >> > >> " Map this function to Space key. >> > >> noremap:call ToggleFold() >> > >> >> > >> 使用空格来打开(关闭)fold,用 python_fold 会更爽。 >> > >> >> > >> vim 有很多 tips ,你自己去搜 python 吧。 >> > >> >> > >> 最后,vim的问题请到 http://groups.google.com/group/vim-cn 讨论。 >> > >> >> > >> >> > >> > 至于PythonFold则可有可无,感觉速度非常慢。 >> > >> >> > >> >> > >> 我感觉速度上一点影响都感觉不到,我可还是128m内存的机器哦。 >> > >> >> > >> -- >> > >> http://codeplayer.blogspot.com/ >> > >> >> > >> _______________________________________________ >> > >> python-chinese >> > >> Post: send python-chinese在lists.python.cn >> > >> Subscribe: send subscribe to python-chinese-request在lists.python.cn >> > >> Unsubscribe: send unsubscribe to >> > python-chinese-request在lists.python.cn >> > >> Detail Info: http://python.cn/mailman/listinfo/python-chinese >> > >> >> > > >> > > >> > > >> > >> > >> > >> > -- >> > 使用 Opera 革命性的电子邮件客户程序: http://www.opera.com/mail/ >> > _______________________________________________ >> > python-chinese >> > Post: send python-chinese在lists.python.cn >> > Subscribe: send subscribe to python-chinese-request在lists.python.cn >> > Unsubscribe: send unsubscribe to >> python-chinese-request在lists.python.cn >> > Detail Info: http://python.cn/mailman/listinfo/python-chinese >> >> >> >> >> -- >> 注意身体,身体是革命的本钱!! > > > > -- 得之我幸,不得我命
2007年03月15日 星期四 21:59
On 3/15/07, 张三峰 <zhangxufeng在gmail.com> wrote: > 听了介绍用了ulipad,但按F5老是说错误:你没有设置python解释器,参数设置里要 > 怎么样设置才行呢? > 使用exe版本需要先在参数中设置下Python解释器的位置。不过建议使用最新的源码版本。在svn中。它不用设置,而且更稳定,功能更强。 -- I like python! UliPad <>: http://wiki.woodpecker.org.cn/moin/UliPad My Blog: http://www.donews.net/limodou
2007年03月15日 星期四 22:00
²»¾ÍÊǼÓÈëpython³ÌÐòµÄ·¾¶Âï¡£ÎҵIJ»ÓÃÉèÖõġ£ On 3/15/07, ÕÅÈý·å <zhangxufeng在gmail.com> wrote: > > ÌýÁ˽éÉÜÓÃÁËulipad£¬µ«°´F5ÀÏÊÇ˵´íÎó£ºÄãûÓÐÉèÖÃpython½âÊÍÆ÷£¬²ÎÊýÉèÖÃÀïÒª > ÔõôÑùÉèÖòÅÐÐÄØ£¿ > > ÔÚ Thu, 15 Mar 2007 16:37:25 +0800£¬jessinio smith <jessinio在gmail.com> д > µÀ: > > > Ä¿Ç°ÕýÔÚѧvimµÄ½Å±¾¡£ÏëÓÃpythonдvimµÄ½Å±¾£¬Ê¹ËüÄÜ×î´óµØÂú×ã×Ô¼ºµÄÒªÇó¡£ > > > > > > On 3/15/07, jessinio smith <jessinio在gmail.com> wrote: > >> > >> ÈçºÎ±à¼£¿£¿ÕâÓÐѧÎÊѽ¡£ > >> > >> ¾ÍÊÇset ft=python¾Í¿ÉÒÔÁË¡£²»Ë¬Â¾Í¼Ó¶à¼¸¸öÉèÖ᣿´ÄãµÄÒªÇóÁË¡£ÄãÕÒÒ» > >> ÏÂÈ˼ÒÓõÄvim½Å±¾°É¡£ > >> > >> On 3/15/07, ÕÅÈý·å <zhangxufeng在gmail.com > wrote: > >> > > >> > лл£¬ÎÒÊdzõѧÕß¡£ > >> > ÒÔǰû±à¹ý³Ì¡£ > >> > > >> > ÔÚ Thu, 15 Mar 2007 07:46:48 +0800£¬Steve Chu < stvchu在gmail.com> д > >> µÀ: > >> > > >> > > vim7.0ÀïÃæÓÐpythonÓï·¨¸ßÁÁ°¡£¬ctrl+nÌáʾÊäÈëÒ²¹»ÓÃÁË > >> > > > >> > > On 3/14/07, yi huang <yi.codeplayer在gmail.com> wrote: > >> > >> > >> > >> On 3/14/07, ÕÅÈý <zhangxufeng在gmail.com> wrote: > >> > >> > > >> > >> > ÈçÌâ¡£ > >> > >> > ÐèÒªÏÂÔØÄÄЩ²å¼þ£¬ÔõôÓã¿ > >> > >> > >> > >> > >> > >> ǧÍòҪװ python_fold.vim£¬·Ç³£ÓÐÓà £¬ÎÒ»¹×°Á˸ö project.vim £¬»¹ÓÐ > >> ¿é×¢ÊÍ > >> > >> µÄ²å¼þ£ºnerd_comments.vim¡£ > >> > >> ÁíÍâ±ðÍüÁËÅäÖà set ai sw=4 sts=4 et tw=72 ¡£ > >> > >> ÁíÍ⻹ÓÐÕâ¸öÅäÖ㺠> >> > >> > >> > >> " Toggle fold state between closed and opened. > >> > >> " > >> > >> " If there is no fold at current line, just moves forward. > >> > >> " If it is present, reverse it's state. > >> > >> fun! ToggleFold() > >> > >> if foldlevel('.') == 0 > >> > >> normal! l > >> > >> else > >> > >> if foldclosed('.') < 0 > >> > >> . foldclose > >> > >> else > >> > >> . foldopen > >> > >> endif > >> > >> endif > >> > >> " Clear status line > >> > >> echo > >> > >> endfun > >> > >> > >> > >> " Map this function to Space key. > >> > >> noremap:call ToggleFold() > >> > >> > >> > >> ʹÓÿոñÀ´´ò¿ª£¨¹Ø±Õ£©fold£¬Óà python_fold »á¸üˬ¡£ > >> > >> > >> > >> vim Óкܶà tips £¬Äã×Ô¼ºÈ¥ËÑ python °É¡£ > >> > >> > >> > >> ×îºó£¬vimµÄÎÊÌâÇëµ½ http://groups.google.com/group/vim-cn ÌÖÂÛ¡£ > >> > >> > >> > >> > >> > >> > ÖÁÓÚPythonFoldÔò¿ÉÓпÉÎÞ£¬¸Ð¾õËٶȷdz£Âý¡£ > >> > >> > >> > >> > >> > >> ÎҸоõËÙ¶ÈÉÏÒ»µãÓ°Ï춼¸Ð¾õ²»µ½£¬ÎÒ¿É»¹ÊÇ128mÄÚ´æµÄ»úÆ÷Ŷ¡£ > >> > >> > >> > >> -- > >> > >> http://codeplayer.blogspot.com/ > >> > >> > >> > >> _______________________________________________ > >> > >> python-chinese > >> > >> Post: send python-chinese在lists.python.cn > >> > >> Subscribe: send subscribe to > python-chinese-request在lists.python.cn > >> > >> Unsubscribe: send unsubscribe to > >> > python-chinese-request在lists.python.cn > >> > >> Detail Info: http://python.cn/mailman/listinfo/python-chinese > >> > >> > >> > > > >> > > > >> > > > >> > > >> > > >> > > >> > -- > >> > ʹÓà Opera ¸ïÃüÐԵĵç×ÓÓʼþ¿Í»§³ÌÐò: http://www.opera.com/mail/ > >> > _______________________________________________ > >> > python-chinese > >> > Post: send python-chinese在lists.python.cn > >> > Subscribe: send subscribe to python-chinese-request在lists.python.cn > >> > Unsubscribe: send unsubscribe to > >> python-chinese-request在lists.python.cn > >> > Detail Info: http://python.cn/mailman/listinfo/python-chinese > >> > >> > >> > >> > >> -- > >> ×¢ÒâÉíÌ壬ÉíÌåÊǸïÃüµÄ±¾Ç®£¡£¡ > > > > > > > > > > > > -- > µÃÖ®ÎÒÐÒ£¬²»µÃÎÒÃü > _______________________________________________ > python-chinese > Post: send python-chinese在lists.python.cn > Subscribe: send subscribe to python-chinese-request在lists.python.cn > Unsubscribe: send unsubscribe to python-chinese-request在lists.python.cn > Detail Info: http://python.cn/mailman/listinfo/python-chinese -- ×¢ÒâÉíÌ壬ÉíÌåÊǸïÃüµÄ±¾Ç®£¡£¡ -------------- 下一部分 -------------- Ò»¸öHTML¸½¼þ±»ÒƳý... URL: http://python.cn/pipermail/python-chinese/attachments/20070315/091e2caf/attachment.htm
2007年03月15日 星期四 22:06
用的 exe版本,怎么设置解释器位置?源码版本怎么用 ?能具体点吗? 我是新手上路。谢谢 在 Thu, 15 Mar 2007 21:59:35 +0800,limodou <limodou在gmail.com> 写道: > On 3/15/07, 张三峰 <zhangxufeng在gmail.com> wrote: >> 听了介绍用了ulipad,但按F5老是说错误:你没有设置python解释器,参数设置里 >> 要 >> 怎么样设置才行呢? >> > 使用exe版本需要先在参数中设置下Python解释器的位置。不过建议使用最新的源码 > 版本。在svn中。它不用设置,而且更稳定,功能更强。 > -- 得之我幸,不得我命
2007年03月15日 星期四 22:19
On 3/15/07, 张三峰 <zhangxufeng在gmail.com> wrote: > 用的 exe版本,怎么设置解释器位置?源码版本怎么用 ?能具体点吗? > 我是新手上路。谢谢 > 源码版本首先从 http://wxpython.org 网站上下载 unicode 版本的安装包,安装。 然后使用 TortoiseSVN 工具从 ulipad wiki 中列出的svn 地址下载源码。具体的步骤在 wiki 页上上有,是英文写的。 下载后,进入ulipad的目录,双击 UliPad.pyw就可以运行了。 -- I like python! UliPad <>: http://wiki.woodpecker.org.cn/moin/UliPad My Blog: http://www.donews.net/limodou
2007年03月15日 星期四 23:58
今天用了一下,下的是最新的3.6 exe版本,发现在选择非py文件时,那个python菜单消失后菜单栏没有刷新 在07-3-15,limodou <limodou在gmail.com> 写道: > > On 3/15/07, 张三峰 <zhangxufeng在gmail.com> wrote: > > 用的 exe版本,怎么设置解释器位置?源码版本怎么用 ?能具体点吗? > > 我是新手上路。谢谢 > > > 源码版本首先从 http://wxpython.org 网站上下载 unicode 版本的安装包,安装。 > 然后使用 TortoiseSVN 工具从 ulipad wiki 中列出的svn 地址下载源码。具体的步骤在 wiki 页上上有,是英文写的。 > 下载后,进入ulipad的目录,双击 UliPad.pyw就可以运行了。 > > -- > I like python! > UliPad <>: http://wiki.woodpecker.org.cn/moin/UliPad > My Blog: http://www.donews.net/limodou > _______________________________________________ > python-chinese > Post: send python-chinese在lists.python.cn > Subscribe: send subscribe to python-chinese-request在lists.python.cn > Unsubscribe: send unsubscribe to python-chinese-request在lists.python.cn > Detail Info: http://python.cn/mailman/listinfo/python-chinese -- SpitFire -------------- 下一部分 -------------- 一个HTML附件被移除... URL: http://python.cn/pipermail/python-chinese/attachments/20070315/ac872991/attachment.htm
2007年03月16日 星期五 08:37
On 3/15/07, SpitFire <spitfire2在gmail.com> wrote: > 今天用了一下,下的是最新的3.6 exe版本,发现在选择非py文件时,那个python菜单消失后菜单栏没有刷新 > 那是一个bug,在svn中已经修复了。所以强烈建议使用源码版本。 -- I like python! UliPad <>: http://wiki.woodpecker.org.cn/moin/UliPad My Blog: http://www.donews.net/limodou
Zeuux © 2025
京ICP备05028076号