1<?xml version="1.0" encoding="utf-8"?>
2<page xmlns="http://projectmallard.org/1.0/" type="topic" style="task" id="synctex-editors" xml:lang="bn">
3
4  <info>
5    <link type="guide" xref="index#synctex" group="fourth"/>
6    <desc>Which editor can you use to edit your TEX file?</desc>
7    <revision pkgversion="1.25" version="0.1" date="2021-03-13" status="final"/>
8    <credit type="author">
9      <name>Tiffany Antopolski</name>
10      <email>tiffany@antopolski.com</email>
11    </credit>
12    <license>
13      <p>Creative Commons Share Alike 3.0</p>
14    </license>
15
16  </info>
17
18<title>Supported editors</title>
19
20<section id="pluma"><title><app>pluma</app></title>
21<p>
22<link xref="synctex-search#forward-search">Forward Search</link> (from <app>pluma</app> to Atril) and <link xref="synctex-search#backward-search">Backward search</link> (from Atril to <app>pluma</app>) are both supported.
23</p>
24</section>
25
26<section id="vim-latex"><title>Vim-latex</title>
27<p>
28The <app>pluma</app> plugin contains a python script (<file>atril_dbus.py</file>) that can be used to get SyncTeX working with Vim.
29In order to use vim-latex together with Atril you need to follow the next steps:
30</p>
31<steps>
32 <item>
33  <p>
34     Copy the <file>atril_dbus.py</file> to some directory in your path and give it +x permissions.
35
36 </p>
37 </item>
38 <item>
39  <p>
40     Modify your <file>~/.vimrc</file> file and add the following lines.
41    </p>
42<code>
43let g:Tex_ViewRule_pdf = 'atril_dbus.py'
44let g:Tex_DefaultTargetFormat = 'pdf'
45let g:Tex_CompileRule_pdf = 'pdflatex --synctex=1 -interaction=nonstopmode $*'
46</code>
47
48  </item>
49  <item>
50   <p>
51     Now you can use Forward search from vim-latex by typing \ls. Backward search is not yet supported.
52   </p>
53  </item>
54</steps>
55</section>
56</page>
57