Mercurial > vim
annotate runtime/doc/vim-tr.UTF-8.1 @ 33399:95db67c7b754 v9.0.1958
patch 9.0.1958: cannot complete option values
Commit: https://github.com/vim/vim/commit/900894b09a95398dfc75599e9f0aa2ea25723384
Author: Yee Cheng Chin <ychin.git@gmail.com>
Date: Fri Sep 29 20:42:32 2023 +0200
patch 9.0.1958: cannot complete option values
Problem: cannot complete option values
Solution: Add completion functions for several options
Add cmdline tab-completion for setting string options
Add tab-completion for setting string options on the cmdline using
`:set=` (along with `:set+=` and `:set-=`).
The existing tab completion for setting options currently only works
when nothing is typed yet, and it only fills in with the existing value,
e.g. when the user does `:set diffopt=<Tab>` it will be completed to
`set diffopt=internal,filler,closeoff` and nothing else. This isn't too
useful as a user usually wants auto-complete to suggest all the possible
values, such as 'iblank', or 'algorithm:patience'.
For set= and set+=, this adds a new optional callback function for each
option that can be invoked when doing completion. This allows for each
option to have control over how completion works. For example, in
'diffopt', it will suggest the default enumeration, but if `algorithm:`
is selected, it will further suggest different algorithm types like
'meyers' and 'patience'. When using set=, the existing option value will
be filled in as the first choice to preserve the existing behavior. When
using set+= this won't happen as it doesn't make sense.
For flag list options (e.g. 'mouse' and 'guioptions'), completion will
take into account existing typed values (and in the case of set+=, the
existing option value) to make sure it doesn't suggest duplicates.
For set-=, there is a new `ExpandSettingSubtract` function which will
handle flag list and comma-separated options smartly, by only suggesting
values that currently exist in the option.
Note that Vim has some existing code that adds special handling for
'filetype', 'syntax', and misc dir options like 'backupdir'. This change
preserves them as they already work, instead of converting to the new
callback API for each option.
closes: #13182
Signed-off-by: Christian Brabandt <cb@256bit.org>
Co-authored-by: Yee Cheng Chin <ychin.git@gmail.com>
author | Christian Brabandt <cb@256bit.org> |
---|---|
date | Fri, 29 Sep 2023 20:45:04 +0200 |
parents | 3a1ed539ae2a |
children | 6ffa7c9c0a8d |
rev | line source |
---|---|
20611
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1 .TH VIM 1 "11 Nisan 2006" |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2 .SH AD |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
3 vim \- Vi IMproved, bir programcının metin düzenleyicisi |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
4 .SH ÖZET |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
5 .br |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
6 .B vim |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
7 [seçenekler] [dosya ..] |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
8 .br |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
9 .B vim |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
10 [seçenekler] \- |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
11 .br |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
12 .B vim |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
13 [seçenekler] \-t etiket |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
14 .br |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
15 .B vim |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
16 [seçenekler] \-q [hatadosyası] |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
17 .PP |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
18 .br |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
19 .B ex |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
20 .br |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
21 .B view |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
22 .br |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
23 .B gvim |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
24 .B gview |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
25 .B evim |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
26 .B eview |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
27 .br |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
28 .B rvim |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
29 .B rview |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
30 .B rgvim |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
31 .B rgview |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
32 .SH TANIM |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
33 .B Vim, |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
34 Vi ile yukarıya doğru uyumlu olan bir metin düzenleyicisidir. |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
35 Her tür düz metni düzenlemede kullanılabilir. |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
36 Özellikle programları düzenlemede yararlıdır. |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
37 .PP |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
38 Vi üzerine yapılmış birçok geliştirme ve iyileştirmeyi içerir: |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
39 Çok düzeyli geri alma, çoklu pencereler ve arabellekler, sözdizim vurgulama, |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
40 komut satırı düzenleme, dosya adı tamamlama, çevrimiçi yardım, görsel seçim vb. |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
41 .B Vim |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
42 ve Vi arasındaki değişikliklerin bir özeti için ":help vi_diff.txt" |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
43 dosyasına bir göz atın. |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
44 .PP |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
45 .B Vim'i |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
46 çalıştırırken gerekli olan yardımın çoğu çevrimiçi yardım sisteminden elde |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
47 edilebilir. Bunun için ":help" komutunu kullanabilirsiniz. |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
48 Aşağıda ÇEVRİMİÇİ YARDIM bölümüne bakın. |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
49 .PP |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
50 Genelde |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
51 .B Vim |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
52 tek bir dosyayı düzenlemek için şu komutla çalıştırılır: |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
53 .PP |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
54 vim dosya |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
55 .PP |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
56 Biraz daha açacak olursak: |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
57 .PP |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
58 vim [seçenekler] [dosyalistesi] |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
59 .PP |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
60 Eğer dosya listesi sağlanmamışsa, düzenleyici boş bir arabellek açar. |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
61 Bunun dışında aşağıdaki dört seçenekten bir tanesi de bir veya birden çok |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
62 dosyayı düzenlemek için kullanılabilir. |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
63 .TP 12 |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
64 dosya .. |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
65 Dosya adlarının bir listesi. |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
66 Bunlardan ilki ekrana getirilip arabelleğe yüklenir. |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
67 İmleç arabelleğin ilk satırında konumlandırılır. |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
68 Diğer dosyalara ":next" komutu ile geçebilirsiniz. |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
69 Adı tire ile başlayan bir dosyayı düzenlemek için dosya listesinin başına |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
70 "\-\-" koyun. |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
71 .TP |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
72 \- |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
73 Düzenlenecek dosya stdin'den okunur. Komutlar bir tty olması gereken |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
74 stderr'den okunur. |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
75 .TP |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
76 \-t {etiket} |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
77 Düzenlenecek dosya ve bu dosyanın başlangıç imleç konumu bir "etiket"e |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
78 dayanır, bir tür bıraktığınız konumu belirten bir ayraç gibi. |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
79 Etiket dosyasında {etiket} aranır, ilişkin dosya şu anki dosya olur ve |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
80 ilişkin komut çalıştırılır. |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
81 Bu genelde C programları için kullanılır, {etiket} bu durumda bir işlev |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
82 olabilir. |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
83 Bunun sonucunda bu işlevi içeren dosya o anki dosya olur ve imleç bu |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
84 işlevin başlangıcına konumlandırılır. |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
85 Ek bilgi için: ":help tag\-commands". |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
86 .TP |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
87 \-q [hatadosyası] |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
88 Hızlı düzelt kipinde başlat |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
89 [hatadosyası] okunur ve ilk hata görüntülenir. |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
90 Eğer [hatadosyası] sağlanmazsa, dosya adı 'errorfile' seçeneğinden alınır |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
91 (öntanımlı olarak Amiga için "AztecC.Err", diğer sistemlerde "errors.err"). |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
92 Sonraki hatalara ":cn" komutu ile geçilebilir. |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
93 Ek bilgi için: ":help quickfix". |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
94 .PP |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
95 .B Vim |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
96 girilen komutun adına göre değişik biçimde davranır (çalıştırılabilir hâlâ |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
97 aynı dosya olarak kalabilir). |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
98 .TP 10 |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
99 vim |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
100 "Normal" kip, standart çalışma biçimi. |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
101 .TP |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
102 ex |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
103 Ex kipinde başlat. |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
104 "\-e" değişkeni ile de başlatılabilir. |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
105 Normal kipe ":vi" komutu ile geçilebilir. |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
106 .TP |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
107 view |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
108 Saltokunur kipte başlat. Bu kipte dosya yazımına izin verilmez. |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
109 "\-R" değişkeni ile de başlatılabilir. |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
110 .TP |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
111 gvim gview |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
112 Grafik arabirim sürümü. |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
113 Yeni bir pencere açar. |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
114 "\-g" değişkeni ile de başlatılabilir. |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
115 .TP |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
116 evim eview |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
117 Kolay kipte başlatılan grafik arabirim sürümü. |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
118 Yeni bir pencere açar. |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
119 "\-y" değişkeni ile de başlatılabilir. |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
120 .TP |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
121 rvim rview rgvim rgview |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
122 Yukarıdaki ile aynı, ancak sınırlamalar içerir. Kabuk komutları |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
123 çalıştırılamaz veya |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
124 .B Vim |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
125 askıya alınamaz. |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
126 "\-Z" değişkeni ile de başlatılabilir. |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
127 .SH SEÇENEKLER |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
128 Seçenekler bir sıra gözetmeksizin dosya adlarından önce veya sonra |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
129 kullanılabilir. |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
130 Herhangi bir değişken içermeyen seçenekler bir tirenin ardında sıralanabilir. |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
131 .TP 12 |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
132 +[num] |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
133 İlk dosya için imleç "num" satırında konumlandırılacaktır. |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
134 Eğer "num" eksikse imleç en son satırda başlar. |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
135 .TP |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
136 +/{dizge} |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
137 İlk dosya için imleç {dizgi}'nin ilk eşleşmesinin olduğu satırda |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
138 konumlandırılacaktır. |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
139 Kullanılabilir arama dizgileri için ":help search\-pattern" yazın. |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
140 .TP |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
141 +{komut} |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
142 .TP |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
143 \-c {komut} |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
144 İlk dosya okunduktan sonra {komut} çalıştırılır. |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
145 {komut} bir Ex komutu olarak işletilir. |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
146 Eğer {komut} boşluk içeriyorsa çift tırnak içerisine alınmalıdır (bu |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
147 kullanılan kabuğa bağlıdır). |
21499 | 148 Örnek: vim "+set si" main.c |
20611
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
149 .br |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
150 Not: 10 taneye kadar "+" veya "\-c" komutu kullanabilirsiniz. |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
151 .TP |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
152 \-S {dosya} |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
153 İlk dosya okunduktan sonra {dosya} kaynak alınır. |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
154 \-c "source {dosya}" bu komutun eşdeğeridir. |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
155 {dosya}, '\-' ile başlayamaz. |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
156 Eğer {dosya} sağlanmazsa "Session.vim" kullanılır (yalnızca \-S son |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
157 değişken olarak kullanıldığında işe yarar). |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
158 .TP |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
159 \-\-cmd {komut} |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
160 "\-c" komutu gibi, ancak komut herhangi bir vimrc dosyasını işletmeden |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
161 önce çalıştırılır. |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
162 "\-c" komutundan bağımsız olarak bu komutlardan 10 taneye kadar |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
163 çalıştırabilirsiniz. |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
164 .TP |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
165 \-A |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
166 Eğer |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
167 .B Vim |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
168 sağdan sola yazılan dosyaları ve Arapça klavye dizilimini kullanabilmesi için |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
169 ARAPÇA desteği ile derlenmişe bu seçenek |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
170 .B Vim'i |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
171 Arapça kipinde başlatır ('arabic' seçeneği açılır). Aksi durumda |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
172 .B Vim |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
173 hata verip çıkar. |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
174 .TP |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
175 \-b |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
176 İkili kip. |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
177 Bir çalıştırılabiliri veya ikili dosyayı düzenlemeye olanacak sağlayacak |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
178 birkaç seçenek ayarlanır. |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
179 .TP |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
180 \-C |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
181 Uyumlu kip. 'compatible' seçeneğini ayarlar. |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
182 Bu kipte |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
183 .B Vim |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
184 bir .vimrc dosyası var olsa bile genelde Vi gibi davranır. |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
185 .TP |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
186 \-d |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
187 Karşılaştırma kipinde başlat. |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
188 Bir, iki, üç veya dört adet dosya adı değişkeni olmalıdır. |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
189 .B Vim |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
190 bütün dosyaları yan yana açar ve aralarındaki değişiklikleri gösterir. |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
191 vimdiff(1) gibi çalışır. |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
192 .TP |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
193 \-d {aygıt} |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
194 {aygıt}'ı bir uçbirim olarak kullanmak için açar. |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
195 Yalnızca Amiga'da çalışır. |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
196 Örnek: |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
197 "\-d con:20/30/600/150". |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
198 .TP |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
199 \-D |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
200 Hata ayıklama kipi. Bir betiğin ilk komutunu çalıştırırken hata ayıklama |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
201 kipine geçer. |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
202 .TP |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
203 \-e |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
204 .B Vim'i |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
205 Ex kipinde başlatır, "ex" çalıştırılabiliri ile aynı işlevi görür. |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
206 .TP |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
207 \-E |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
208 .B Vim'i |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
209 geliştirilmiş Ex kipinde başlatır, "exim" çalıştırılabiliri ile aynı |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
210 işlevi görür. |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
211 .TP |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
212 \-f |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
213 Önplan. Grafik arabirim sürümü için |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
214 .B Vim |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
215 başladığı kabuktan ayrılmayacak ve kendisini çatallamayacaktır. |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
216 Amiga'da, |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
217 .B Vim |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
218 yeni bir pencere açmak için yeniden başlatılmaz. |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
219 Bu seçenek |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
220 .B Vim |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
221 düzenleme oturumunun bitmesini bekleyecek bir program tarafından |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
222 başlatıldığında kullanılmalıdır (örn. mail). |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
223 Amiga'da ":sh" ve ":!" komutları çalışmayacaktır. |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
224 .TP |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
225 \-\-nofork |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
226 Önplan. Grafik arabirim sürümü için |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
227 .B Vim |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
228 başladığı kabuktan ayrılmayacak ve kendisini çatallamayacaktır. |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
229 .TP |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
230 \-F |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
231 Eğer |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
232 .B Vim |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
233 sağdan sola yazılan dosyaları ve Farsça klavye dizilimini kullanabilmesi için |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
234 FKMAP desteği ile derlenmişse, bu seçenek |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
235 .B Vim'i |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
236 Farsça kipinde başlatır ('fkmap' ve 'rightleft' seçenekleri açılır). |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
237 Aksi durumda |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
238 .B Vim |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
239 hata verip çıkar. |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
240 .TP |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
241 \-g |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
242 Eğer |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
243 .B Vim |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
244 grafik arabirim desteği ile derlenmişse bu seçenek grafik arabirimi çalıştırır. |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
245 Eğer grafik arabirim desteği eklenmemişse |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
246 .B Vim |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
247 hata verir ve çıkar. |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
248 .TP |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
249 \-h |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
250 Komut satırı değişkenleri ve seçenekleri üzerine biraz yardım sağlar. |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
251 Bu komuttan sonra |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
252 .B Vim |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
253 çıkar. |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
254 .TP |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
255 \-H |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
256 Eğer |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
257 .B Vim |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
258 sağdan sola yazılan dosyaları ve İbranca klavye dizilimini kullanabilmesi için |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
259 RIGHTLEFT desteği ile derlenmişse, bu seçenek |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
260 .B Vim'i |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
261 İbranca kipinde başlatır ('hkmap' ve 'rightleft' seçenekleri açılır). |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
262 Aksi durumda |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
263 .B Vim |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
264 hata verir ve çıkar. |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
265 .TP |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
266 \-i {viminfo} |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
267 Öntanımlı "~/.viminfo" dosyası yerine kullanılacak olan viminfo dosyasını |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
268 belirtmek için kullanılır. |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
269 Bu komut aynı zamanda viminfo kullanımını atlamak için de kullanılabilir. |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
270 Bunun için dosya adı yerine "NONE" vermeniz yeterlidir. |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
271 .TP |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
272 \-L |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
273 \-r ile aynı. |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
274 .TP |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
275 \-l |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
276 Lisp kipi. |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
277 Bu değişken 'lisp' ve 'showmatch' seçeneklerini açar. |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
278 .TP |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
279 \-m |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
280 Dosya yazma seçeneği kapalıdır. |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
281 \'write' seçeneğini sıfırlar. |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
282 Arabelleği hâlâ değiştirebilirsiniz, ancak dosyayı yazmak olanaklı değildir. |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
283 .TP |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
284 \-M |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
285 Değişikliklere izin verilmez. 'modifiable' ve 'write' seçenekleri kapatılır, |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
286 böylece değişiklik yapılamaz ve dosyalar yazılamaz. |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
287 Bu seçenekleri yeniden açıp değişiklik yapmayı etkinleştirebilirsiniz. |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
288 .TP |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
289 \-N |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
290 Uyumsuz kip. 'no-compatible' seçeneğini sıfırlar. |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
291 Bu seçenekle birlikte |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
292 .B Vim |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
293 biraz daha düzgünce çalışır, ancak bir .vimrc dosyası olmamasına rağmen |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
294 Vi ile daha az uyumludur. |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
295 .TP |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
296 \-n |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
297 Bir takas dosyası kullanılmaz. |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
298 Çökme sonrası kurtarma olanaklı olmayacaktır. |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
299 Eğer çok yavaş bir ortamda dosya çalışıyorsanız (örn. disket) yararlı olabilir. |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
300 ":set uc=0" ile de yapılabilir. |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
301 Geri almak için ":set uc=200" yapın. |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
302 .TP |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
303 \-nb |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
304 NetBeans için bir düzenleyici sunucusu olur. Ayrıntılar için belgelere bakın. |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
305 .TP |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
306 \-o[N] |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
307 N sayıda pencereyi üst üste açar. |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
308 N verilmezse, her dosya için bir pencere açar. |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
309 .TP |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
310 \-O[N] |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
311 N sayıda pencereyi yan yana açar. |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
312 N verilmezse, her dosya için bir pencere açar. |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
313 .TP |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
314 \-p[N] |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
315 N sayıda sekme açar. |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
316 N verilmezse, her dosya için bir sekme açar. |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
317 .TP |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
318 \-R |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
319 Saltokunur kip. |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
320 \'readonly' seçeneği açılır. |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
321 Arabelleği hâlâ değiştirebilirsiniz, ancak yanlışlıkla dosyanın üzerine |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
322 yazmaktan sizi korur. |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
323 Dosyanın üzerine yazmak istemiyorsanız, Ex komutuna bir ünlem imi ekleyin, |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
324 örn. ":w!". |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
325 \-R seçeneği aynı zamanda \-n seçeneğini de uygular (yukarıda bakın). |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
326 \'readonly' seçeneği ":set noro" ile sıfırlanabilir. |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
327 Ek bilgi için: ":help 'readonly'". |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
328 .TP |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
329 \-r |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
330 Takas dosyalarını içerdikleri kurtarma bilgilerini gösterecek biçimde listeler. |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
331 .TP |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
332 \-r {dosya} |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
333 Kurtarma kipi. |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
334 Çökmüş bir düzenleme oturumunu takas dosyasını kullanarak kurtarır. |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
335 Takas dosyası dosya ile aynı ada iye olup sonuna ".swp" eklenmiştir. |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
336 Ek bilgi için: ":help recovery". |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
337 .TP |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
338 \-s |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
339 Sessiz kip. Yalnızca "Ex" olarak başlatıldığında veya "\-e" seçeneği |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
340 "\-s" seçeneğinden önce verildiğinde çalışır. |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
341 .TP |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
342 \-s {betikgir} |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
343 {betikgir} betik dosyası okunur. |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
344 Dosyadaki karakterler onları siz girmişsiniz gibi kabul edilir. |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
345 Aynısı ":source! {betikgir}" komutu ile de gerçekleştirilebilir. |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
346 Eğer dosyanın sonuna düzenleyici çıkmadan önce gelinirse, sonraki karakterler |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
347 klavyeden okunur. |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
348 .TP |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
349 \-T {uçbirim} |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
350 .B Vim'e |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
351 kullandığınız uçbirimin adını söyler. |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
352 Yalnızca kendiliğinden okunamazsa gereklidir. |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
353 .B Vim'in |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
354 tanıdığı bir uçbirim olmalıdır veya termcap veya terminfo dosyasında |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
355 tanımlı olmalıdır. |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
356 .TP |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
357 \-u {vimrc} |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
358 İlklendirme için {vimrc} dosyasındaki komutları kullan. |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
359 Diğer tüm ilklendirmeler atlanır. |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
360 Bunu özel türde dosyaları düzenlemek için kullanın. |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
361 Dosya adı olarak "NONE" verilirse tüm özelleştirmeler atlanır. |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
362 Ek bilgi için vim içinde ":help initialization" bölümüne bakın. |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
363 .TP |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
364 \-U {gvimrc} |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
365 Grafik arabirim ilklendirmesi için {gvimrc} dosyasındaki komutlara bakın. |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
366 Diğer tüm grafik arabirim ilklendirmeleri atlanır. |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
367 Dosya adı olarak "NONE" verilirse tüm özelleştirmeler atlanır. |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
368 Ek bilgi için vim içinde ":help gui\-init" bölümüne bakın. |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
369 .TP |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
370 \-V[N] |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
371 Sözlü anlatım. Hangi dosyaların kaynak alındığını ve viminfo dosyasından |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
372 nelerin okunduğunu yazdırır. 'verbose' için isteğe bağlı N seçeneği |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
373 kullanılabilir. Öntanımlı sayı 10'dur. |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
374 .TP |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
375 \-v |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
376 .B Vim'i |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
377 "vi" yazarak başlatırmış gibi Vi kipinde başlatır. Bu yalnızca |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
378 çalıştırılabilir "ex" olduğunda bir işe yarar. |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
379 .TP |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
380 \-w {betikçık} |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
381 Girdiğiniz tüm karakterler siz |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
382 .B Vim'den |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
383 çıkana değin {betikçık} dosyasında saklanır. |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
384 Bu "vim \-s" veya ":source" komutu ile kullanılacak bir betik yaratmaya yarar. |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
385 Eğer {betikçık} dosyası varsa karakterler dosyaya eklenir. |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
386 .TP |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
387 \-W {betikçık} |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
388 \-w gibi, ancak var olan bir dosyanın üzerine yazar. |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
389 .TP |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
390 \-x |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
391 Dosya yazarken şifreleme kullanır. Bir şifre girmeniz istenecektir. |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
392 .TP |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
393 \-X |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
394 X sunucusuna bağlanmaz. Vim'in uçbirimde başlama süresini azaltır ancak pencere başlığı |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
395 ve pano kullanılamaz. |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
396 .TP |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
397 \-y |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
398 .B Vim'i |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
399 "evim" veya "eview" yazarak başlatırmış gibi kolay kipte başlatır. |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
400 .B Vim'i |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
401 diğer tıkla ve yaz düzenleyicileri gibi çalıştırır. |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
402 .TP |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
403 \-Z |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
404 Kısıtlı kip. Program "r" yazarak başlatılmış gibi davranır. |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
405 .TP |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
406 \-\- |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
407 Seçeneklerin bittiğini belirtir. |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
408 Bundan sonraki değişkenler artık bir dosya adı olarak işletilir. |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
409 Aynı zamanda '\-' ile başlayan bir dosyayı tanıtmak için de kullanılabilir. |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
410 .TP |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
411 \-\-echo\-wid |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
412 Yalnızca GTK grafik arabirimi: Pencere numarasını stdout'a yankıla. |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
413 .TP |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
414 \-\-help |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
415 Yardım iletisini yazdırır ve çıkar, "\-h" gibi. |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
416 .TP |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
417 \-\-literal |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
418 Dosya adı değişkenlerini gerçek anlamda işlet, joker karakterlerini |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
419 genişletme. Bunun kabuğun karakterleri kendiliğinden genişlettiği Unix'te |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
420 bir etkisi bulunmamaktadır. |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
421 .TP |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
422 \-\-noplugin |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
423 Eklentileri yükleme. "\-u NONE" da aynı işlevi görür. |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
424 .TP |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
425 \-\-remote |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
426 Bir Vim sunucusuna bağlan ve geri kalan değişkenlerde belirtilen dosyaları |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
427 düzenle. Eğer bir sunucu bulunamazsa bir uyarı verilir ve dosyalar şu anki |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
428 Vim'de düzenlenir. |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
429 .TP |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
430 \-\-remote\-expr {ifade} |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
431 Bir Vim sunucusuna bağlan ve {ifade}'yi değerlendirip sonucu stdout'a yazdır. |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
432 .TP |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
433 \-\-remote\-send {anahtarlar} |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
434 Bir Vim sunucusuna bağlan ve ona {anahtarlar} gönder. |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
435 .TP |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
436 \-\-remote\-silent |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
437 \-\-remote gibi, ancak bir sunucu bulunamazsa uyarı vermez. |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
438 .TP |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
439 \-\-remote\-wait |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
440 \-\-remote gibi, ancak Vim dosyalar düzenlenene kadar çıkmaz. |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
441 .TP |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
442 \-\-remote\-wait\-silent |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
443 \-\-remote\-wait gibi, ancak bir sunucu bulunamazsa uyarı vermez. |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
444 .TP |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
445 \-\-serverlist |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
446 Bulunabilecek bütün Vim sunucularını listeler. |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
447 .TP |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
448 \-\-servername {ad} |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
449 {ad}'ı bir sunucu adı olarak kullanır. Bir \-\-remote değişkeni ve |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
450 bağlanacağı sunucunun adı ile kullanılmadığı sürece şu anki Vim için |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
451 kullanılır. |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
452 .TP |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
453 \-\-socketid {id} |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
454 Yalnızca GTK grafik arabirimi: GtkPlug mekanizmasını kullanarak gvim'i başka |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
455 bir pencerede çalıştır. |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
456 .TP |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
457 \-\-version |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
458 Sürüm bilgisini yazdırır ve çıkar. |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
459 .SH ÇEVRİMİÇİ YARDIM |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
460 .B Vim |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
461 içinde ":help" yazarak başlayın. |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
462 Belirli bir konu üzerine yardım almak için ":help subject" yazın. |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
463 Örneğin: "ZZ" komutu üzerine bilgi almak için ":help ZZ" yazın. |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
464 <Tab> ve CTRL-D kullanarak konuları tamamlayın (":help cmdline\-completion"). |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
465 Bir konumdan diğerini atlamak için etiketler mevcuttur (bir tür köprü gibi), |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
466 ek bilgi için ":help"). |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
467 Tüm belgelendirmeyi bu biçimde okuyabilirsiniz, örneğin: ":help syntax.txt". |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
468 ":help syntax.txt". |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
469 .SH DOSYALAR |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
470 .TP 15 |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
471 /usr/local/lib/vim/doc/*.txt |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
472 .B Vim |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
473 belgelendirme dosyaları. |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
474 Tüm listeyi görmek için ":help doc\-file\-list" yazın. |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
475 .TP |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
476 /usr/local/lib/vim/doc/tags |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
477 Belgelendirme içinde veri bulmak için kullanılan etiketler dosyası. |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
478 .TP |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
479 /usr/local/lib/vim/syntax/syntax.vim |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
480 Sistem geneli sözdizim ilklendirmeleri. |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
481 .TP |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
482 /usr/local/lib/vim/syntax/*.vim |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
483 Programlama dilleri için sözdizim dosyaları. |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
484 .TP |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
485 /usr/local/lib/vim/vimrc |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
486 Sistem geneli |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
487 .B Vim |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
488 ilklendirmeleri. |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
489 .TP |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
490 ~/.vimrc |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
491 Sizin kişisel |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
492 .B Vim |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
493 ilklendirmeleriniz. |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
494 .TP |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
495 /usr/local/lib/vim/gvimrc |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
496 Sistem geneli gvim ilklendirmeleri. |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
497 .TP |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
498 ~/.gvimrc |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
499 Sizin kişisel gvim ilklendirmeleriniz. |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
500 .TP |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
501 /usr/local/lib/vim/optwin.vim |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
502 ":options" komutu için kullanılan betik, görsel seçenek ayarları. |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
503 .TP |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
504 /usr/local/lib/vim/menu.vim |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
505 gvim için sistem geneli menü ilklendirmeleri. |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
506 .TP |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
507 /usr/local/lib/vim/bugreport.vim |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
508 Hata raporu oluşturmak için kullanılan betik. Ek bilgi için: ":help bugs". |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
509 .TP |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
510 /usr/local/lib/vim/filetype.vim |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
511 Dosya türünü adından tanıyan betik. Ek bilgi için: ":help 'filetype'". |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
512 .TP |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
513 /usr/local/lib/vim/scripts.vim |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
514 Dosya türünü içeriğinden tanıyan betik. Ek bilgi için: ":help 'filetype'". |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
515 .TP |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
516 /usr/local/lib/vim/print/*.ps |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
517 PostScript yazdırması için kullanılan dosyalar. |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
518 .PP |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
519 En güncel bilgiler için VİM ana sayfasını ziyaret edin: |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
520 .br |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
521 <URL:http://www.vim.org/> |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
522 .SH AYRICA BAKINIZ |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
523 vimtutor(1) |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
524 .SH YAZAR |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
525 .B Vim'in |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
526 büyük çoğunluğu Bram Moolenaar tarafından başkalarının kayda değer |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
527 yardımlarıyla yazılmıştır. |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
528 Ek bilgi için |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
529 .B Vim |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
530 içinde ":help credits" yazın. |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
531 .br |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
532 .B Vim |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
533 Stevie tabanlıdır, yazarları: Tim Thompson, |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
534 Tony Andrews ve G.R. (Fred) Walter. |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
535 Orijinal koddan geriye pek bir şey kalmadığını söylemek yanlış olmaz. |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
536 .SH HATALAR |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
537 Bilinen hataların bir listesi için ":help todo" yazın. |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
538 .PP |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
539 Unutmayın ki, başkaları tarafından hata olarak değerlendirilebilecek konuların |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
540 bir çoğu Vi'nin davranışlarına sadık kalınması nedeniyle vardır. Yine de |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
541 bazı şeylerin "Vi bunu değişik biçimde yapıyor" diye hata olabileceğini |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
542 düşünüyorsanız, "vi_diff.txt" dosyasını dikkatle okuyun (veya Vim içinde |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
543 :help vi_diff.txt yazın. |
ac057cd4e5cb
patch 8.2.0859: no Turkish translation of the manual
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
544 Ek olarak 'compatible' ve 'cpoptions' seçeneklerine de bakabilirsiniz. |