Skip to content

EditXT-v1.8.0-71b64f1

Choose a tag to compare

@millerdev millerdev released this 14 Nov 16:02
· 282 commits to master since this release
  • Pick a font!
    (install if necessary) then set font YourFavoriteFont to give it a spin.
    Finally, open ~/.editxt/config.yaml and set your preferred font.
    For example:
    font: face: Inconsolata size: 14
    Save and reload_config. If you really don't like change you can revert to
    the old font style:
    font: face: Monaco size: 10 smooth: false
    The system default fixed width font and size will be used if no font is set
    in the config. To view the current font, type set font in the command bar
    and observe the default parameter values.
  • Improve line numbers, including support for correct numbering on soft-wrapped
    documents. The line number view now uses the same background and border color
    as the right margin. These colors can be customized in the config:
    line_number_color: 707070 right_margin: position: 80 line_color: E6E6E6 margin_color: F7F7F7
  • Select line(s) on click/drag in line number view.
  • Rescan selection on Replace (Command+=), and replace only if the find
    text/pattern is found in the selection.
  • Add python command, which executes the current file content or selection
    as python code. It does the same thing as python -c CODE in a terminal.