Prolog support for Vim users

2019-02-09 01:31发布

I am starting with Prolog programming using XSB.

What syntax highlighting script or plugin for vim editor would you suggest for (XSB) Prolog ?

标签: vim prolog xsb
3条回答
Lonely孤独者°
2楼-- · 2019-02-09 02:12

There are two big plugins "set" for working with Prolog in Vim:

You can check files of the second - they are extending standard prolog.vim which comes with Vim, but including it. Moreover they support different flavours of Prolog - SWI Prolog, GNU Prolog, etc. You can use them as an examble and create your own.

查看更多
爷的心禁止访问
3楼-- · 2019-02-09 02:13

Vim (7.3) comes with filetype-specific settings and syntax highlighting for Prolog. Just make sure that your file is detected as such (i.e. :setlocal filetype? prints prolog), and you have the usual :filetype plugin on and :syntax on in your ~/.vimrc.

Vim auto-detects *.pdb and *.pl (depending on contents, can also be Perl); but you can configure additional patterns, see :help new-filetype.

查看更多
爷、活的狠高调
4楼-- · 2019-02-09 02:18

The Vim support for Logtalk is an alternative for syntax coloring of Prolog files. Given that Logtalk extends Prolog, you will get nice syntax coloring for official and de facto standard Prolog features. The latest version is available here:

https://github.com/LogtalkDotOrg/logtalk3/tree/master/coding/vim

You will need to configure Vim, however, to use the Logtalk syntax highlighter support for the Prolog files (basically to recognize the file extensions that you're using for Prolog; e.g. XSB, by default, prefers .P). Also do try different Vim themes. Some of them are more pleasant than others.

查看更多
登录 后发表回答