Browse Source

ui: print command output on command error, remove 'opening' text on action, handle non-ascii in backspacing

Benton Edmondson 1 year ago
parent
commit
d158a2965b
1 changed files with 11 additions and 4 deletions
  1. 11 4
      ui/ui.go

+ 11 - 4
ui/ui.go

@@ -164,7 +164,8 @@ func (s *State) Update(input byte) {
 			s.output(s.view())
 			return
 		}
-		s.buffer = s.buffer[:len(s.buffer)-1]
+		bufferRunes := []rune(s.buffer)
+		s.buffer = string(bufferRunes[:len(bufferRunes)-1])
 		if s.buffer == "" && s.mode == selection {
 			s.mode = normal
 		}
@@ -177,7 +178,7 @@ func (s *State) Update(input byte) {
 			if args := strings.SplitN(s.buffer, " ", 2); len(args) == 2 {
 				err := s.subcommand(args[0], args[1])
 				if err != nil {
-					s.buffer = "Failed to run command: " + ansi.Squash(err.Error())
+					s.buffer = "Failed to run command: " + err.Error()
 					s.mode = problem
 					s.output(s.view())
 					s.buffer = ""
@@ -239,6 +240,11 @@ func (s *State) Update(input byte) {
 		s.buffer = ""
 	}
 
+	if s.mode == opening {
+		s.mode = normal
+		s.buffer = ""
+	}
+
 	/* At this point we know we are in normal mode */
 	switch input {
 	case 'k': // up
@@ -503,7 +509,8 @@ func (s *State) openExternally(link string, mediaType *mime.MediaType) {
 	}
 
 	go func() {
-		err := cmd.Run()
+		outputBytes, err := cmd.CombinedOutput()
+		output := string(outputBytes)
 
 		s.m.Lock()
 		defer s.m.Unlock()
@@ -514,7 +521,7 @@ func (s *State) openExternally(link string, mediaType *mime.MediaType) {
 
 		if err != nil {
 			s.mode = problem
-			s.buffer = "Failed to open link: " + ansi.Squash(err.Error())
+			s.buffer = "Failed to open link: " + output
 			s.output(s.view())
 			s.mode = normal
 			s.buffer = ""