^ C = crtl+C ??


 
Thread Tools Search this Thread
Top Forums UNIX for Dummies Questions & Answers ^ C = crtl+C ??
# 1  
Old 07-15-2010
^ C = crtl+C ??

Why ^ C stands for crtl+C in ubuntu shell? also on gvim the shortcuts come this way too with weird symbols (like +gP). Where can I find a list of those?
# 2  
Old 07-16-2010
Historical convention. People had to have a way to define that a certain key combination had to be pressed / had to be informed that a certain combination had been pressed. Since a single caret is rather unlikely to occur in regular text it stands out.

VIm is the descendant of an editor from that era: vi. Without a GUI (no pointy-clicky) all input had to be done via the keyboard, and as such key combinations had to be used. gvim is just a fancy interface for VIm, and as such supports all the same combinations. Documentation on VIm can be found here, or by entering :help when in command mode.
 
Login or Register to Ask a Question

Previous Thread | Next Thread

4 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Comparing Data file with Crtl file

Hi, I need to compare a file with its contents matching to that of another file(filename , received date and record count). Lets say has File A original data Ex - 1,abc,1234 2,bcd,4567 3,cde,8901 and File B has details of File A Ex- FILEA.TXT|06/17|2010|3 (filename)|(received... (18 Replies)
Discussion started by: Prashanth B
18 Replies

2. Shell Programming and Scripting

Enter Crtl+U character in shell script

hi I have some program which accepts "Crtl+U" input, Now i want to run it thorugh my written script ...all other inputs are accepted but how to supply this input. I am supplying input parameters to the program named EX as below. ================================= main.sh . . EX<<EOF... (3 Replies)
Discussion started by: ashish_uiit
3 Replies

3. UNIX for Dummies Questions & Answers

crtl-c not working

hello, After I log into a box I run a small script so my backspace works, but after running the script the ctrl-c will not work anymore to break.. Will work before.. The script I run is below... I am on AIX 5.2. Thanks. set -o vi TMOUT=0 export TERM=xterm export HOST=`hostname` export... (4 Replies)
Discussion started by: benefactr
4 Replies

4. UNIX for Dummies Questions & Answers

crtl+D

I want to beable to check whether ctrl-d has been pressed in a C++ program under unix. How is ctrl-d represented. any help would be appreciated. true (3 Replies)
Discussion started by: robocop
3 Replies
Login or Register to Ask a Question