aboutsummaryrefslogtreecommitdiff
path: root/range_test.go
AgeCommit message (Collapse)Author
2023-09-21all: rename file range to line_range to match with its typeShulhan
The type name is lineRange so the file name should be line_range, not range.
2023-03-20all: changes the line number arguments for "local" and "play" commandShulhan
Previously, the "local" and "play" command only accept two kind of arguments: one argument for executing single line or two arguments for executing line range. There are no options to executing multiple single line, multiple line range, or combination of them. This changes make the both commands accept list of lines or line range where each separated by comma. For example, to execute multiple, different single lines awwan local 4,8,12 To execute multiple line range, awwan local 4-8,12-16 Or to execute multiple lines and line range, awwan local 4,8,10-12