Rename :x to :u, for 'use'.
This commit is contained in:
		
							parent
							
								
									86e93b9f61
								
							
						
					
					
						commit
						e2ff27da07
					
				
					 1 changed files with 2 additions and 2 deletions
				
			
		| 
						 | 
					@ -340,7 +340,7 @@ bool NixRepl::processLine(string line)
 | 
				
			||||||
             << "  :r            Reload all files\n"
 | 
					             << "  :r            Reload all files\n"
 | 
				
			||||||
             << "  :s <expr>     Build dependencies of derivation, then start nix-shell\n"
 | 
					             << "  :s <expr>     Build dependencies of derivation, then start nix-shell\n"
 | 
				
			||||||
             << "  :t <expr>     Describe result of evaluation\n"
 | 
					             << "  :t <expr>     Describe result of evaluation\n"
 | 
				
			||||||
             << "  :x <expr>     Build derivation, then start nix-shell\n";
 | 
					             << "  :u <expr>     Build derivation, then start nix-shell\n";
 | 
				
			||||||
    }
 | 
					    }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    else if (command == ":a" || command == ":add") {
 | 
					    else if (command == ":a" || command == ":add") {
 | 
				
			||||||
| 
						 | 
					@ -364,7 +364,7 @@ bool NixRepl::processLine(string line)
 | 
				
			||||||
        evalString(arg, v);
 | 
					        evalString(arg, v);
 | 
				
			||||||
        std::cout << showType(v) << std::endl;
 | 
					        std::cout << showType(v) << std::endl;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    } else if (command == ":x") {
 | 
					    } else if (command == ":u") {
 | 
				
			||||||
        Value v, f, result;
 | 
					        Value v, f, result;
 | 
				
			||||||
        evalString(arg, v);
 | 
					        evalString(arg, v);
 | 
				
			||||||
        evalString("drv: (import <nixpkgs> {}).runCommand \"shell\" { buildInputs = [ drv ]; } \"\"", f);
 | 
					        evalString("drv: (import <nixpkgs> {}).runCommand \"shell\" { buildInputs = [ drv ]; } \"\"", f);
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue