Sublime Text

From RaySoft

Sublime Text is a shareware text and source code editor available for Windows, macOS, and Linux. It natively supports many programming languages and markup languages. Users can customize it with themes and expand its functionality with plugins, typically community-built and maintained under free-software licenses. To facilitate plugins, Sublime Text features a Python API. The editor utilizes minimal interface and contains features for programmers including configurable syntax highlighting, code folding, search-and-replace supporting regular-expressions, terminal output window, and more. [1]

Documentation

Installation & Configuration

Files

6 pages found:

Components

1 pages found:

Additional Resources

Add-ons

Hints

Install a language dictionary
dir="${HOME}/.config/sublime-text/Packages/Language - German"
url='https://raw.githubusercontent.com/titoBouzout/Dictionaries/master'

if [[ ! -d "${dir}" ]]; then
  mkdir --parents "${dir}"
fi

for ext in 'aff' 'dic'; do
  if [[ ! -f "${dir}/de_CH.${ext}" ]]; then
    curl --output "${dir}/de_CH.${ext}" "${url}/German_de_CH.${ext}"
  fi
done

References

  1. Wikipedia contributors. "Sublime Text." Wikipedia. https://en.wikipedia.org/wiki/Sublime_Text (accessed 06.05.2023)