Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Prolog support for Vim users

Tags:

vim

prolog

xsb

I am starting with Prolog programming using XSB.

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

like image 277
Sourabh Daptardar Avatar asked Oct 26 '13 19:10

Sourabh Daptardar


3 Answers

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.

like image 92
Paulo Moura Avatar answered Oct 22 '22 08:10

Paulo Moura


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.

like image 20
Ingo Karkat Avatar answered Oct 22 '22 08:10

Ingo Karkat


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

  • adimit/prolog.vim - widely known but abandoned
  • soli/prolog-vim - lesser known, but more updated and advanced

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.

like image 2
Anton Kochkov Avatar answered Oct 22 '22 09:10

Anton Kochkov