I\'m just starting out learning python with GEdit plus various plugins as my IDE.
Visual Studio/F# has a feature which permits the highlighting on a piece of text in th
Yes, you use "external tools plugin"
As an example,
Close the Preferences Window
Tools > Manage External Tools
.
#!/usr/bin/env python
import sys
result = eval(sys.stdin.read())
print expression, "=>", result, type(result)
.