1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47
|
<?xml version="1.0" encoding="utf-8" ?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta name="generator" content="Docutils 0.3.7: http://docutils.sourceforge.net/" />
<title>The PIDA FAQ</title>
<meta name="author" content="Ali Afshar" />
<link rel="stylesheet" href="default.css" type="text/css" />
</head>
<body>
<div class="document" id="the-pida-faq">
<h1 class="title">The PIDA FAQ</h1>
<table class="docinfo" frame="void" rules="none">
<col class="docinfo-name" />
<col class="docinfo-content" />
<tbody valign="top">
<tr><th class="docinfo-name">Author:</th>
<td>Ali Afshar</td></tr>
<tr><th class="docinfo-name">Contact:</th>
<td><a class="first last reference" href="mailto:aafshar@gmail.com">aafshar@gmail.com</a></td></tr>
</tbody>
</table>
<div class="section" id="general">
<h1><a name="general">General</a></h1>
<div class="section" id="is-pida-available-for-windows">
<h2><a name="is-pida-available-for-windows">Is PIDA available for Windows?</a></h2>
</div>
</div>
<div class="section" id="vim">
<h1><a name="vim">Vim</a></h1>
<div class="section" id="i-close-buffers-in-vim-why-are-they-still-visible-in-pida">
<h2><a name="i-close-buffers-in-vim-why-are-they-still-visible-in-pida">I close buffers in Vim. Why are they still visible in PIDA?</a></h2>
<p>If you have closed a vim buffer using <tt class="docutils literal"><span class="pre">:bd</span></tt> or <tt class="docutils literal"><span class="pre">Delete</span></tt> from the
<tt class="docutils literal"><span class="pre">Buffer</span></tt> menu, the buffer will still remain in the PIDA buffer list. This is
not a bug but a feature of how Vim works. It does not actually delete the
buffer on <tt class="docutils literal"><span class="pre">:bd</span></tt> but merely hides it.</p>
<p>The solution is to use <tt class="docutils literal"><span class="pre">:bw</span></tt>. This properly unloads the buffer and PIDA
correctly recognises this situation. If you have read the Vim docs (like a
good Vimmer) you know hat the documentation regarding <tt class="docutils literal"><span class="pre">:bw</span></tt> is a bit scary,
and asks you to <em>make sure you know what you are doing</em>. Rest assured, it
works fine.</p>
</div>
</div>
</div>
</body>
</html>
|