mirror of
				https://github.com/ohmyzsh/ohmyzsh.git
				synced 2024-05-11 05:55:17 +00:00 
			
		
		
		
	I.e. when prefixing the current command-line with 'sudo ' maintain the current cursor position instead of jumping to the end of the line.
		
			
				
	
	
		
			22 lines
		
	
	
		
			594 B
		
	
	
	
		
			Bash
		
	
	
	
	
	
			
		
		
	
	
			22 lines
		
	
	
		
			594 B
		
	
	
	
		
			Bash
		
	
	
	
	
	
| # ------------------------------------------------------------------------------
 | |
| # Description
 | |
| # -----------
 | |
| #
 | |
| # sudo will be inserted before the command
 | |
| #
 | |
| # ------------------------------------------------------------------------------
 | |
| # Authors
 | |
| # -------
 | |
| #
 | |
| # * Dongweiming <ciici123@gmail.com>
 | |
| #
 | |
| # ------------------------------------------------------------------------------
 | |
| 
 | |
| sudo-command-line() {
 | |
|     [[ -z $BUFFER ]] && zle up-history
 | |
|     [[ $BUFFER != sudo\ * ]] && LBUFFER="sudo $LBUFFER"
 | |
| }
 | |
| zle -N sudo-command-line
 | |
| # Defined shortcut keys: [Esc] [Esc]
 | |
| bindkey "\e\e" sudo-command-line
 |