blob: e1a586d1489ada1192969e9c1ed96ad2a4cd1d4d [file] [log] [blame]
Christian Brabandtb4ddc6c2024-01-02 16:51:11 +01001*os_qnx.txt* For Vim version 9.1. Last change: 2005 Mar 29
Bram Moolenaar071d4272004-06-13 20:20:40 +00002
3
4 VIM REFERENCE MANUAL by Julian Kinraid
5
6
7 *QNX* *qnx*
8
91. General |qnx-general|
102. Compiling Vim |qnx-compiling|
113. Terminal support |qnx-terminal|
124. Photon GUI |photon-gui|
135. Photon fonts |photon-fonts|
146. Bugs & things To Do
15
16==============================================================================
17
181. General *qnx-general*
19
20Vim on QNX behaves much like other unix versions. |os_unix.txt|
21
22
232. Compiling Vim *qnx-compiling*
24
Bram Moolenaar402d2fe2005-04-15 21:00:38 +000025Vim can be compiled using the standard configure/make approach. If you want to
Bram Moolenaar071d4272004-06-13 20:20:40 +000026compile for X11, pass the --with-x option to configure. Otherwise, running
27./configure without any arguments or passing --enable-gui=photon, will compile
28vim with the Photon gui support. Run ./configure --help , to find out other
29features you can enable/disable.
30
31
323. Terminal support *qnx-terminal*
33
34Vim has support for the mouse and clipboard in a pterm, if those options
35are compiled in, which they are normally.
36
37The options that affect mouse support are |'mouse'| and |'ttymouse'|. When
38using the mouse, only simple left and right mouse clicking/dragging is
39supported. If you hold down shift, ctrl, or alt while using the mouse, pterm
40will handle the mouse itself. It will make a selection, separate from what
41vim's doing.
42
43When the mouse is in use, you can press Alt-RightMouse to open the pterm menu.
44To turn the mouse off in vim, set the mouse option to nothing, set mouse=
45
46
474. Photon GUI *photon-gui*
48
49To start the gui for vim, you need to run either gvim or vim -g, otherwise
50the terminal version will run. For more info - |gui-x11-start|
51
52Supported features:
53 :browse command |:browse|
54 :confirm command |:confirm|
55 Cursor blinking |'guicursor'|
56 Menus, popup menus and menu priorities |:menu|
57 |popup-menu|
58 |menu-priority|
59 Toolbar |gui-toolbar|
60 |'toolbar'|
61 Font selector (:set guifont=*) |photon-fonts|
62 Mouse focus |'mousefocus'|
63 Mouse hide |'mousehide'|
64 Mouse cursor shapes |'mouseshape'|
65 Clipboard |gui-clipboard|
66
67Unfinished features:
68 Various international support, such as Farsi & Hebrew support,
69 different encodings, etc.
70
71 This help file
72
73Unsupported features:
74 Find & Replace window |:promptfind|
75 Tearoff menus
76
77 Other things which I can't think of so I can't list them
78
79
805. Fonts *photon-fonts*
81
82You set fonts in the gui with the guifont option >
83 :set guifont=Lucida\ Terminal
84<
85The font must be a monospace font, and any spaces in the font name must be
86escaped with a '\'. The default font used is PC Terminal, size 8. Using
87'*' as the font name will open a standard Photon font selector where you can
88select a font.
89
90Following the name, you can include optional settings to control the size and
91style of the font, each setting separated by a ':'. Not all fonts support the
92various styles.
93
94The options are,
95 s{size} Set the size of the font to {size}
96 b Bold style
97 a Use antialiasing
98 i Italic style
99
100Examples:
101
102Set the font to monospace size 10 with antialiasing >
103 :set guifont=monospace:s10:a
104<
105Set the font to Courier size 12, with bold and italics >
106 :set guifont=Courier:s12:b:i
107<
108Select a font with the requester >
109 :set guifont=*
110<
111
112
1136. Bugs & things To Do
114
115Known problems:
116 - Vim hangs sometimes when running an external program. Workaround:
117 put this line in your |vimrc| file: >
118 set noguipty
119
120Bugs:
Bram Moolenaar402d2fe2005-04-15 21:00:38 +0000121 - Still a slight problem with menu highlighting.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000122 - When using phditto/phinows/etc., if you are using a font that
123 doesn't support the bold attribute, when vim attempts to draw
124 bold text it will be all messed up.
125 - The cursor can sometimes be hard to see.
Bram Moolenaar402d2fe2005-04-15 21:00:38 +0000126 - A number of minor problems that can fixed. :)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000127
128Todo:
129 - Improve multi-language support.
130 - Options for setting the fonts used in the menu and toolbar.
131 - Find & Replace dialog.
132 - The clientserver features.
133 - Maybe tearoff menus.
134
135 - Replace usage of fork() with spawn() when launching external
136 programs.
137
Bram Moolenaard473c8c2018-08-11 18:00:22 +0200138 vim:tw=78:sw=4:ts=8:noet:ft=help:norl: