Install a sciTE Editor similar to NotePad ++ under Fedora14. Download the following files from the official website and put them in the same directory gscite228.tgzlocale. zh_cn.propertiesapi /*. api (create an api directory by yourself. For api configuration, refer to the official instructions) SciTEUser. properties (Personal Configuration File Created by yourself). The reference content is as follows: # optionifyouwanttouset
Install a sciTE Editor similar to NotePad ++ under Fedora 14.
Download the following files from the official website and place them in the same directory.
Gscite228.tgz
Locale. zh_cn.properties
Api/*. api (create an api directory by yourself. For details about api configuration, refer to the official instructions)
SciTEUser. properties (Personal Configuration File Created by yourself). The reference content is as follows:
# Option if you want to use the icons of the current GTK theme, personally I like the default icons
# Toolbar. usestockicons = 1
# Auto maximize the window
Position. maximize = 1
# Default tool bars, reminds me of NP ++
Toolbar. visible = 1
# So you can see the full path of the file on top
Title. full. path = 1
# Singleton instance has reached ie I dont want to see your editors, opening files will simply create a new tab
Check. if. already. open = 1
# Make teh status bar at the bottom visible
Statusbar. visible = 1
# This will save the last session, so when scite is fired up the files from the previous session are loaded.
Save. session = 1
# Save list of recent files
Save. recent = 1
# Simplified chinese
# Code. page = 936
# Character. set = 134
If PLAT_GTK
Output. code. page = 936
# UTF-8
Code. page = 65001
# LC_CTYPE = en_US.UTF-8
Tabsize = 4
Indent. size = 4
Tabbar. multiline = 1
Line. margin. visible = 1
Autocompleteword. automatic = 1
Find. replace. advanced = 1
Fold. margin. color = #0 AFFDD
Fold. margin. highlight. color = # FF0022
Highlight. current. word = 1
# Highlight. current. word. by. style = 1
Highlight. current. word. color = #00 AAFF
# Are. you. sure. on. reload = 1
If PLAT_GTK
Locale. properties =/usr/share/scite/locale. zh_cn.properties
----------------------------
Quick installation in linux
Decompress gscite228.tgz
Tar-xzvf gscite228.tgz
Save the following content as install_sciTE.sh
#! /Bin/bash
If [$ #-ne 1]; then
Echo "usage: $0 program_dir"
Echo "example: $0 gscite"
Exit 65
Fi
EXEDIR =/usr/local/bin
CONFDIR =/usr/share/scite
PICDIR =/usr/share/pixmaps
Cd $1
Cp-pf SciTE $ EXEDIR/sciTE
If [! -D $ CONFDIR]; then
Mkdir-p $ CONFDIR
Fi
Cp-pf *. properties $ CONFDIR
If [! -D $ PICDIR]; then
Mkdir-p $ PICDIR
Fi
Cp-pf Sci48M.png $ PICDIR
Cd-
Cp-pf locale *. properties $ CONFDIR
Cp-Rpf api/$ CONFDIR/api
Chmod 755/usr/local/bin/sciTE
Chmod-R 755 $ CONFDIR
Chmod-R 755 $ PICDIR
Cp-pf SciTEUser. properties/root/. SciTEUser. properties
Exit
#---------------------------------------
Use root User
Chmod + x install_sciTE.sh
./Install_sciTE.sh gscite
Add a personal configuration file to other system users as needed, as shown in figure
Cp-pf SciTEUser. properties/home/mayjie/. SciTEUser. properties
-----------------
It seems okay, but there is no function list. Sorry.