~ubuntu-branches/ubuntu/karmic/pida/karmic

« back to all changes in this revision

Viewing changes to docs/latex/pida-faq.tex

  • Committer: Bazaar Package Importer
  • Author(s): Jan Luebbe
  • Date: 2007-04-17 16:08:06 UTC
  • mfrom: (1.1.2 upstream)
  • Revision ID: james.westby@ubuntu.com-20070417160806-3ttlb6igf94x9i03
Tags: 0.4.4-1
* New upstream release (closes: #419129)
* Add dependency on python-glade2 (closes: #418716)
* Update copyright

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
\documentclass[10pt,a4paper,english]{article}
2
 
\usepackage{babel}
3
 
\usepackage{ae}
4
 
\usepackage{aeguill}
5
 
\usepackage{shortvrb}
6
 
\usepackage[latin1]{inputenc}
7
 
\usepackage{tabularx}
8
 
\usepackage{longtable}
9
 
\setlength{\extrarowheight}{2pt}
10
 
\usepackage{amsmath}
11
 
\usepackage{graphicx}
12
 
\usepackage{color}
13
 
\usepackage{multirow}
14
 
\usepackage{ifthen}
15
 
\usepackage[colorlinks=true,linkcolor=blue,urlcolor=blue]{hyperref}
16
 
\usepackage[DIV12]{typearea}
17
 
%% generator Docutils: http://docutils.sourceforge.net/
18
 
\newlength{\admonitionwidth}
19
 
\setlength{\admonitionwidth}{0.9\textwidth}
20
 
\newlength{\docinfowidth}
21
 
\setlength{\docinfowidth}{0.9\textwidth}
22
 
\newlength{\locallinewidth}
23
 
\newcommand{\optionlistlabel}[1]{\bf #1 \hfill}
24
 
\newenvironment{optionlist}[1]
25
 
{\begin{list}{}
26
 
  {\setlength{\labelwidth}{#1}
27
 
   \setlength{\rightmargin}{1cm}
28
 
   \setlength{\leftmargin}{\rightmargin}
29
 
   \addtolength{\leftmargin}{\labelwidth}
30
 
   \addtolength{\leftmargin}{\labelsep}
31
 
   \renewcommand{\makelabel}{\optionlistlabel}}
32
 
}{\end{list}}
33
 
\newlength{\lineblockindentation}
34
 
\setlength{\lineblockindentation}{2.5em}
35
 
\newenvironment{lineblock}[1]
36
 
{\begin{list}{}
37
 
  {\setlength{\partopsep}{\parskip}
38
 
   \addtolength{\partopsep}{\baselineskip}
39
 
   \topsep0pt\itemsep0.15\baselineskip\parsep0pt
40
 
   \leftmargin#1}
41
 
 \raggedright}
42
 
{\end{list}}
43
 
% begin: floats for footnotes tweaking.
44
 
\setlength{\floatsep}{0.5em}
45
 
\setlength{\textfloatsep}{\fill}
46
 
\addtolength{\textfloatsep}{3em}
47
 
\renewcommand{\textfraction}{0.5}
48
 
\renewcommand{\topfraction}{0.5}
49
 
\renewcommand{\bottomfraction}{0.5}
50
 
\setcounter{totalnumber}{50}
51
 
\setcounter{topnumber}{50}
52
 
\setcounter{bottomnumber}{50}
53
 
% end floats for footnotes
54
 
% some commands, that could be overwritten in the style file.
55
 
\newcommand{\rubric}[1]{\subsection*{~\hfill {\it #1} \hfill ~}}
56
 
\newcommand{\titlereference}[1]{\textsl{#1}}
57
 
% end of "some commands"
58
 
\title{The PIDA FAQ}
59
 
\author{}
60
 
\date{}
61
 
\hypersetup{
62
 
pdftitle={The PIDA FAQ},
63
 
pdfauthor={Ali Afshar}
64
 
}
65
 
\raggedbottom
66
 
\begin{document}
67
 
\maketitle
68
 
 
69
 
%___________________________________________________________________________
70
 
\begin{center}
71
 
\begin{tabularx}{\docinfowidth}{lX}
72
 
\textbf{Author}: &
73
 
        Ali Afshar \\
74
 
\textbf{Contact}: &
75
 
        \href{mailto:aafshar@gmail.com}{aafshar@gmail.com} \\
76
 
\end{tabularx}
77
 
\end{center}
78
 
 
79
 
\setlength{\locallinewidth}{\linewidth}
80
 
 
81
 
 
82
 
%___________________________________________________________________________
83
 
 
84
 
\hypertarget{general}{}
85
 
\pdfbookmark[0]{General}{general}
86
 
\section*{General}
87
 
 
88
 
 
89
 
%___________________________________________________________________________
90
 
 
91
 
\hypertarget{is-pida-available-for-windows}{}
92
 
\pdfbookmark[1]{Is PIDA available for Windows?}{is-pida-available-for-windows}
93
 
\subsection*{Is PIDA available for Windows?}
94
 
 
95
 
 
96
 
%___________________________________________________________________________
97
 
 
98
 
\hypertarget{vim}{}
99
 
\pdfbookmark[0]{Vim}{vim}
100
 
\section*{Vim}
101
 
 
102
 
 
103
 
%___________________________________________________________________________
104
 
 
105
 
\hypertarget{i-close-buffers-in-vim-why-are-they-still-visible-in-pida}{}
106
 
\pdfbookmark[1]{I close buffers in Vim. Why are they still visible in PIDA?}{i-close-buffers-in-vim-why-are-they-still-visible-in-pida}
107
 
\subsection*{I close buffers in Vim. Why are they still visible in PIDA?}
108
 
 
109
 
If you have closed a vim buffer using \texttt{:bd} or \texttt{Delete} from the
110
 
\texttt{Buffer} menu, the buffer will still remain in the PIDA buffer list. This is
111
 
not a bug but a feature of how Vim works. It does not actually delete the
112
 
buffer on \texttt{:bd} but merely hides it.
113
 
 
114
 
The solution is to use \texttt{:bw}. This properly unloads the buffer and PIDA
115
 
correctly recognises this situation. If you have read the Vim docs (like a
116
 
good Vimmer) you know hat the documentation regarding \texttt{:bw} is a bit scary,
117
 
and asks you to \emph{make sure you know what you are doing}. Rest assured, it
118
 
works fine.
119
 
 
120
 
\end{document}