I use geany for python programming with vte enabled. I regularly use `Send
Selection to Terminal` for my work and I find it most helpul for debugging my
code. `Send Selection to Terminal` works every time except the Indented code
(eg:`<tab>print('world')`) where it result in a `IndentationError`. I also
request a function in which we can send a line of code to terminal without even
selecting it. For example
```
i=0
print("hello")
if i==0:
print("world")
```
if I want to print hello, now I need to select the line `print("hello")` and
then `Send Selection to Terminal` to get the output in vte. Instead of this I
want to click any where on that line and then do `Send Line to Terminal`
without selecting it. Similarly to print world instead of selecting
`<tab>print('world')` I want to click on that line and then print the output
world.
--
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/geany/geany-plugins/issues/874