All Projects → SethWalkeroo → Quiet-Text

SethWalkeroo / Quiet-Text

Licence: MIT license
A simple Python text editor for programming and note taking.

Programming Languages

python
139335 projects - #7 most used programming language

Projects that are alternatives of or similar to Quiet-Text

betterCode
A light code editor made in Clojure using CLJFX
Stars: ✭ 24 (-51.02%)
Mutual labels:  text-editor
kodbox
kodbox is a file manager for web. It is a newly designed product based on kodexplorer. It is also a web code editor, which allows you to develop websites directly within the web browser.You can run kodbox either online or locally,on Linux, Windows or Mac based platforms
Stars: ✭ 1,188 (+2324.49%)
Mutual labels:  text-editor
penme
Penme is a lightweight open source note taking app focused on privacy!
Stars: ✭ 25 (-48.98%)
Mutual labels:  text-editor
elm-rte-toolkit
A toolkit for creating rich text editors in Elm
Stars: ✭ 139 (+183.67%)
Mutual labels:  text-editor
text-style-editor
Text style editor widget for flutter
Stars: ✭ 25 (-48.98%)
Mutual labels:  text-editor
PredictEd
A rich edit control based text editor with text prediction and other smart features.
Stars: ✭ 32 (-34.69%)
Mutual labels:  text-editor
ec
Simple text editor inspired by Plan9 text editors (Sam & Acme) for macOS
Stars: ✭ 25 (-48.98%)
Mutual labels:  text-editor
lime-termbox
LimeText termbox frontend
Stars: ✭ 58 (+18.37%)
Mutual labels:  text-editor
noteworthy
Markdown editor with bidirectional links and excellent math support, powered by ProseMirror. (In Development!)
Stars: ✭ 178 (+263.27%)
Mutual labels:  text-editor
Acorn.jl
A pure julia text editor
Stars: ✭ 41 (-16.33%)
Mutual labels:  text-editor
IcicleDevelop
A freezing cold development environment
Stars: ✭ 16 (-67.35%)
Mutual labels:  text-editor
writebar
Experimental distraction-free text editor, based on the Macbook pro TouchBar
Stars: ✭ 37 (-24.49%)
Mutual labels:  text-editor
CuteMarkEd-NG
Markdown Editor in Qt 5
Stars: ✭ 55 (+12.24%)
Mutual labels:  text-editor
Squircle-IDE
👨‍💻 Squircle CE is a fast and free multi-language code editor for Android
Stars: ✭ 642 (+1210.2%)
Mutual labels:  text-editor
FreeText
Android 字体 文字 特效 动画效果
Stars: ✭ 140 (+185.71%)
Mutual labels:  text-editor
electron-vue-buefy-editor
A Markdown editor with live preview written using Vue.js, Buefy (Bulma), the Ace editor component, and running inside the Electron framework.
Stars: ✭ 26 (-46.94%)
Mutual labels:  text-editor
Note.it
A Cut Down, Simple, Text Editor For Mac And iOS. Built With SwiftUI (Mostly).
Stars: ✭ 20 (-59.18%)
Mutual labels:  text-editor
TimeWriter
An online collaborative text editor based on event sourcing architecture.
Stars: ✭ 41 (-16.33%)
Mutual labels:  text-editor
multitextor
Multiplatform command line text editor.
Stars: ✭ 27 (-44.9%)
Mutual labels:  text-editor
Fortran-Tools
Fortran compilers, preprocessors, static analyzers, transpilers, IDEs, build systems, etc.
Stars: ✭ 31 (-36.73%)
Mutual labels:  text-editor

Quiet Text logo

Quiet Text

GitHub top language GitHub issues GitHub pull requests Lines of code

Quiet Text is a simple, minimalist text editor made with Python's Tkinter GUI library. Quiet Text aims to create a calming and distraction free text environment for writing code and taking notes.

there should be an image here...

(screenshot taken on Windows 10)

Table of contents

About

Quiet Text aims to give you a clean and simple text editor experience. Everything is right in front of you and all completely customizable to your preferences. Too many text editors clutter their ui with unnecessary tooling that overwhelms their users. It isn't uncommon for somebody to lose hours of their precious work day mulling over and disabling irritating configuration settings in their text editor/ide. We want to eliminate the annoyances of a noisy/busy text editing environment and bring you an environment that has the main goal of increasing focus and eliminating distractions.

Notable Features

  • Autocompletion for parenthesis, brackets (square and curly), single quotes, and double quotes.
  • Auto indentation for code blocks and brackets (when creating lists or creating functions).
  • Syntax highlighting for 15 different languages and more to come (Go, Python, C, C++, Dart, CoffeeScript, Haskell, Rust, Java, JavaScript, HTML, Sql, CSS, Yaml, Markdown).
  • Ability to compile and run your code from the editor.
  • 11 different themes and color schemes to chose from (and more to come).
  • Customization options like font, text color, line height, and many more.

Keyboard Shortcuts

Quiet Text has shortcuts for most commonly performed actions. The list of all the shortcuts is presented bellow:

Command KeyBinding Description
Copy ctrl+c Copy selected text
Cut ctrl+x Cut selected text
Undo ctrl+z undo edits to the text area
Redo ctrl+y redo edits to the text area on Windows
Paste ctrl+v Paste text from the clipboard
Bold ctrl+b Bold selected text
Find and Replace ctrl+f Find and replace specified text
Highlight ctrl+h Highlight selected text
Hide Menu alt Hides menu bar from view in the text editor
Hide Line Numbers ctrl+shift+l Hides line numbers from text area
New File ctrl+n Open a new empty file
Load Previous File ctrl+p Loads the last file you had open
Open File ctrl+o Open an existing file
Open File Tree ctrl+t Opens file tree for seamless work inside a directory
Color Menu ctrl+m Opens color menu
Run File ctrl+r Run the currently active file
Save ctrl+s Save the currently active file
Save As ctrl+shift+s Save the currently active file under a different name
Change Font Size ctrl+mousewheel Increases or decrease font size
Indent tab Indent one or multiple lines
Unindent shift+tab Unindent one or multiple lines

Quick Start

Use the release binaries (.exe)

The fastest way to use the program is to just launch one of the release binaries on your system. If you are on Linux and the binary is not opening you may need to allow permission first. Type in the following command if you trust this program. On Windows you may run into a similar issue, but the Windows gui will let you "run anyway" if you allow it.

chmod u+x (name of .exe file)

Launch using python

The second fastest way would be to install the dependencies through requirements.txt and then launch the application through src/quiet_main.py. You can see instructions for this method below.

Create your own binary

If the release binary is not up to date with the current development branch, then you can just create your own binary with pyinstaller. I'll walk you through the process real quick.

  1. Clone source files off github into your preferred directory
git clone https://github.com/SethWalkeroo/Quiet-Text.git
  1. Install pyinstaller
pip install pyinstaller
  1. Cd into the src directory and use pyinstaller on quiet_main.py
pyinstaller --onefile quiet_main.py
  1. Edit the quiet_main.spec file to include the projects resource tree (configs, themes, syntax, etc.)

(Sorry for the low quality gif. Hopefully it works well enough.)

  1. Use pyinstaller again on your new quiet_main.spec file
pyinstaller quiet_main.spec
  1. Check the dist directory for your binary file and you should be good to go!

Installation

This project requires Pygments as well as PyYAML. Both of these packages can be installed through a virtual environment with requirements.txt. After you install the dependencies, you can simply head into the src directory and launch the editor from src/quiet_main.py.

Mac and Linux installation:

python3 -m venv env
source env/bin/activate
pip3 install -r requirements.txt
cd src
python3 quiet_app_launch.py

Windows:

python -m venv env
env\Scripts\activate.bat
pip install -r requirements.txt
cd src
python3 quiet_main.py

This project also requires a Python3 interpreter with Tkinter support. You can test it using

python3 -m tkinter

In case your (GNU/Linux) machine does not support tkinter, there's a way to run it inside Docker (whereas you can also use another base image than ubuntu):

FROM ubuntu
RUN apt update && apt install -y python3-tk x11-apps
RUN mkdir /code
WORKDIR /code
ADD . /code
CMD ["/usr/bin/python3", "-m", "quiet"]

Now, expose an environment variable to allow access to your host system XAUTH="$HOME/.Xauthority" and build the image using docker build -t quiet .. You can start a container using

docker run --network=host --rm -e DISPLAY=$DISPLAY -v $XAUTH:/root/.Xauthority quiet

Be aware, that the Docker container has full access to your machine! So you better trust the executed code.

Contributing

  • Issues are open to anyone and everyone, but you must comment on the issue first and communicate to me that you are working on it. If you are confident in your ability, I will assign you to the issue.

  • Don't work on an issue that isn't assigned to you unless you communicate with the assignee first.

  • If you make an improvement on an existing feature, make sure to create an issue first and list the fixes or features you have made to the code.

  • All PRs must be made from a Branch. Create a separate branch for every Issue you are working upon and once found fit, make a PR.

  • Please make sure your code works before you submit it :)

check CONTRIBUTING.md for guidlines on how to make a pull request.

Goals

  • Create a visually pleasing text editor! ;)
  • Add syntax highlighting for Python.
  • Allow user's to launch the terminal and run their scripts from any platform.
  • Add special markdown for making lists and notetaking.
  • Allow full customization of the editor's theme and colors.
  • Add helpful features for programming like autoclosing brackets and parenthesis.

suggestions are welcome!

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].