HPE GreenLake Administration
- Community Home
 - >
 - Servers and Operating Systems
 - >
 - Operating Systems
 - >
 - Operating System - OpenVMS
 - >
 - Re: Cnt^A option for character insert..
 
Operating System - OpenVMS
        1840206
        Members
    
    
        3032
        Online
    
    
        110162
        Solutions
    
Forums
        Categories
Company
Local Language
                
                  
                  back
                
        
                
        
                
        
                
        
        
        
                
        
                
        
        
        
                
        
              
              Forums
Discussions
Forums
- Data Protection and Retention
 - Entry Storage Systems
 - Legacy
 - Midrange and Enterprise Storage
 - Storage Networking
 - HPE Nimble Storage
 
Discussions
Forums
Discussions
Discussions
Discussions
Forums
Discussions
                
                  
                  back
                
            
                
            
                
            
                
            
                
            
                
            
                
            
                
            
                
            
                
            
                
            
                
            
                
            
                
            
                
            
                
            
                
            
            
                
            
                
            
                
            
                
            
            
                
            
                
            
            
                
            
                
              
            Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
- BladeSystem Infrastructure and Application Solutions
 - Appliance Servers
 - Alpha Servers
 - BackOffice Products
 - Internet Products
 - HPE 9000 and HPE e3000 Servers
 - Networking
 - Netservers
 - Secure OS Software for Linux
 - Server Management (Insight Manager 7)
 - Windows Server 2003
 - Operating System - Tru64 Unix
 - ProLiant Deployment and Provisioning
 - Linux-Based Community / Regional
 - Microsoft System Center Integration
 
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Blogs
        Information
        Community
Resources
Community Language
        Language
        Forums
Blogs
	
		
			
            
                
            Go to solution
        
            
		
		
			
            	
	
		
        
		
	
	
		Topic Options
			
				
					
	
			
		
	- Subscribe to RSS Feed
 - Mark Topic as New
 - Mark Topic as Read
 - Float this Topic for Current User
 - Bookmark
 - Subscribe
 - Printer Friendly Page
 
- Mark as New
 - Bookmark
 - Subscribe
 - Mute
 - Subscribe to RSS Feed
 - Permalink
 - Report Inappropriate Content
 
07-29-2005 06:56 PM
07-29-2005 06:56 PM
			
				
					
					
						Hi all,
I have OpenVMS V8.2 on Itanium Server Rx2620.At DCL I have to press Cnt^A for character insertion in Command line...How it can be eliminated??
Rgds
noor
	
			
				
		
			
			
			
			
			
			
		
		
		
	
	
	
I have OpenVMS V8.2 on Itanium Server Rx2620.At DCL I have to press Cnt^A for character insertion in Command line...How it can be eliminated??
Rgds
noor
Solved! Go to Solution.
		3 REPLIES 3
	
	            
            
		
		
			
            
                - Mark as New
 - Bookmark
 - Subscribe
 - Mute
 - Subscribe to RSS Feed
 - Permalink
 - Report Inappropriate Content
 
07-29-2005 07:34 PM
07-29-2005 07:34 PM
Solution
			
				
					
					
						Noor,
you can set your terminal's default to /INSERT or /OVERSTRIKE editing ($ HELP SET TERM /OVER). With CTRL-A you can switch between both modes. /OVERSTRIKE editing is the default.
If you prefer /INSERT mode, you could set it as a default in your LOGIN.COM, e.g.
$ IF F$MODE().EQS."INTERACTIVE" THEN $ SET TERM/INSERT
Volker.
		
		
	
	
	
you can set your terminal's default to /INSERT or /OVERSTRIKE editing ($ HELP SET TERM /OVER). With CTRL-A you can switch between both modes. /OVERSTRIKE editing is the default.
If you prefer /INSERT mode, you could set it as a default in your LOGIN.COM, e.g.
$ IF F$MODE().EQS."INTERACTIVE" THEN $ SET TERM/INSERT
Volker.
- Mark as New
 - Bookmark
 - Subscribe
 - Mute
 - Subscribe to RSS Feed
 - Permalink
 - Report Inappropriate Content
 
07-29-2005 08:26 PM
07-29-2005 08:26 PM
			
				
					
						
							Re: Cnt^A option for character insert..
						
					
					
				
			
		
	
			
	
	
	
	
	
			
				
					
					
						Hi Noor,
Ctrl + A switches from overstrike to insert mode and viceversa. So to cancel insert mode, simply type Ctrl + A again.
After you press return, command return to predefined state as declare by SET TERM command. I prefer insert mode, so in SYLOGIN.COM I added SET TERM/INSERT. You can add same command or SET TERM/OVER.
 
H.T.H.
Antonio Vigliotti
					
				
			
			
				
		
		
	
	
	
Ctrl + A switches from overstrike to insert mode and viceversa. So to cancel insert mode, simply type Ctrl + A again.
After you press return, command return to predefined state as declare by SET TERM command. I prefer insert mode, so in SYLOGIN.COM I added SET TERM/INSERT. You can add same command or SET TERM/OVER.
H.T.H.
Antonio Vigliotti
	Antonio Maria Vigliotti
			
			
				
			
			
			
			
			
			
		- Mark as New
 - Bookmark
 - Subscribe
 - Mute
 - Subscribe to RSS Feed
 - Permalink
 - Report Inappropriate Content
 
07-29-2005 10:09 PM
07-29-2005 10:09 PM
			
				
					
						
							Re: Cnt^A option for character insert..
						
					
					
				
			
		
	
			
	
	
	
	
	
			
				
					
					
						Noor,
As noted by others, SET TERMINAL/INSERT will set the default editing mode to insert, and SET TERMINAL/OVERSTRIKE will set command editing into overstrike mode. Command editing can be completely disabled by SET TERMINAL/NOLINE_EDITING completely disables the line editing functionality.
Whichever is your preference, it is a good idea to set the correct mode in your LOGIN.COM. If you do so, it is important to make sure that the line editing mode is set only for interactive sessions, so the command should be the subject of an IF statement, as follows:
$ IF F$MODE() .EQS. "INTERACTIVE" THEN SET TERMINAL/INTERACTIVE
If you want to establish a default for your system, then the default should be in the SYLOGIN.COM file.
I hope that the above is helpful.
- Bob Gezelter, http://www.rlgsc.com
		
		
	
	
	
As noted by others, SET TERMINAL/INSERT will set the default editing mode to insert, and SET TERMINAL/OVERSTRIKE will set command editing into overstrike mode. Command editing can be completely disabled by SET TERMINAL/NOLINE_EDITING completely disables the line editing functionality.
Whichever is your preference, it is a good idea to set the correct mode in your LOGIN.COM. If you do so, it is important to make sure that the line editing mode is set only for interactive sessions, so the command should be the subject of an IF statement, as follows:
$ IF F$MODE() .EQS. "INTERACTIVE" THEN SET TERMINAL/INTERACTIVE
If you want to establish a default for your system, then the default should be in the SYLOGIN.COM file.
I hope that the above is helpful.
- Bob Gezelter, http://www.rlgsc.com
The opinions expressed above are the personal opinions of the authors, not of Hewlett Packard Enterprise. By using this site, you accept the Terms of Use and Rules of Participation.
		
	
	
Company
Events and news
Customer resources
© Copyright 2025 Hewlett Packard Enterprise Development LP