Moosems
Moosems
An arg to turn it off then? I personally want to be able to use a terminal as similar to the one that comes natively to Mac as possible but...
I personally want it as similar to the defaults you find on the average OS but allow more options as extras.
I had fixed that with the left right up commands...
There's nothing gone.....
So clicking needs a bind.
There's no built in way but I can create one.
Bind all keypresses and button clicks and determine if the end result would be on top of any of the tag ranges. If it is, cancel the action otherwise allow...
It'll be fast enough :).
@littlewhitecloud I'm going to do a ton of work tomorrow on the repo (eastern time US) so buckle up :D.
```python from tkinter import Tk, Text, Event root = Tk() txt = Text(root) txt.pack() txt.tag_configure("important") txt.insert("1.0", "Hello, World!") txt.tag_add("important", "1.0", "1.5") # written on phone so there may be syntax...