Gentoo Archives: gentoo-commits

From: "Sven Vermeulen (swift)" <swift@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo commit in xml/htdocs/doc/it: vi-guide.xml
Date: Sun, 05 Feb 2012 14:55:18
Message-Id: 20120205145505.691FE2004B@flycatcher.gentoo.org
1 swift 12/02/05 14:55:05
2
3 Modified: vi-guide.xml
4 Log:
5 Fix bug #401489 - Updated IT translation for vi-guide, thanks to Agostino Sarubbo
6
7 Revision Changes Path
8 1.10 xml/htdocs/doc/it/vi-guide.xml
9
10 file : http://sources.gentoo.org/viewvc.cgi/gentoo/xml/htdocs/doc/it/vi-guide.xml?rev=1.10&view=markup
11 plain: http://sources.gentoo.org/viewvc.cgi/gentoo/xml/htdocs/doc/it/vi-guide.xml?rev=1.10&content-type=text/plain
12 diff : http://sources.gentoo.org/viewvc.cgi/gentoo/xml/htdocs/doc/it/vi-guide.xml?r1=1.9&r2=1.10
13
14 Index: vi-guide.xml
15 ===================================================================
16 RCS file: /var/cvsroot/gentoo/xml/htdocs/doc/it/vi-guide.xml,v
17 retrieving revision 1.9
18 retrieving revision 1.10
19 diff -u -r1.9 -r1.10
20 --- vi-guide.xml 14 Dec 2007 12:49:08 -0000 1.9
21 +++ vi-guide.xml 5 Feb 2012 14:55:05 -0000 1.10
22 @@ -1,8 +1,8 @@
23 <?xml version="1.0" encoding="UTF-8"?>
24 -<!-- $Header: /var/cvsroot/gentoo/xml/htdocs/doc/it/vi-guide.xml,v 1.9 2007/12/14 12:49:08 scen Exp $ -->
25 +<!-- $Header: /var/cvsroot/gentoo/xml/htdocs/doc/it/vi-guide.xml,v 1.10 2012/02/05 14:55:05 swift Exp $ -->
26 <!DOCTYPE guide SYSTEM "/dtd/guide.dtd">
27
28 -<guide link="/doc/it/vi-guide.xml" lang="it">
29 +<guide lang="it">
30
31
32 <title>Imparare vi con gli sheets</title>
33 @@ -35,8 +35,8 @@
34
35 <license/>
36
37 -<version>1.1.7</version>
38 -<date>2005-07-21</date>
39 +<version>2</version>
40 +<date>2011-08-15</date>
41
42 <chapter>
43 <title> Cenni preliminari</title>
44 @@ -786,15 +786,34 @@
45 </p>
46
47 <p>
48 -Se volete usare vi come vostro editor di default, modificate come segue il
49 -vostro file di configurazione <path>/etc/rc.conf</path>:
50 +Se volete usare vi come vostro editor di default, utilizzare <c>eselect</c>:
51 </p>
52
53 <pre caption="Impostare vi come editor di default">
54 -<comment>(Set EDITOR to your preferred editor.)</comment>
55 -#EDITOR="/bin/nano"
56 -EDITOR="/usr/bin/vim"
57 -#EDITOR="/usr/bin/emacs"
58 +~# <i>eselect editor list</i>
59 +Available targets for the EDITOR variable:
60 + [1] /bin/nano
61 + [2] /bin/ed
62 + [3] /usr/bin/ex
63 + [4] /usr/bin/vi
64 + [ ] (free form)
65 +
66 +~# <i>eselect editor set 4</i>
67 +Setting EDITOR to /usr/bin/vi ...
68 +>>> Regenerating /etc/ld.so.cache...
69 +Run ". /etc/profile" to update the variable in your shell.
70 +</pre>
71 +
72 +<p>
73 +Se si vuole ottenere lo stesso risultato solo per il proprio utente invece che
74 +per tutto il sistema, impostare la variabile <c>EDITOR</c> nel proprio
75 +<path>~/.bashrc</path>:
76 +</p>
77 +
78 +<pre caption="Impostare vi come editor dell'utente">
79 +~$ <i>vi ~/.bashrc</i>
80 +<comment>(...)</comment>
81 +export EDITOR="/usr/bin/vi"
82 </pre>
83
84 </body>