We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents a442d90 + 090a04f commit 47cce29Copy full SHA for 47cce29
bufferflow_tinyg.go
@@ -605,12 +605,8 @@ func (b *BufferflowTinyg) BreakApartCommands(cmd string) []string {
605
// just put cmd back in with newline
606
if reSingle.MatchString(item) {
607
//log.Printf("len1. Added cmd back. Not re-adding newline cuz artificially added one earlier. item:'%v'\n", item)
608
- finalCmds = append(finalCmds, item)
609
- } else {
610
- item = item + "\n"
611
- //log.Printf("len1. Re-adding item to finalCmds with newline:'%v'\n", item)
612
613
}
+ finalCmds = append(finalCmds, item)
614
} else {
615
for index, item := range cmds {
616
// since more than 1 cmd, loop thru
0 commit comments