Metadata-Version: 2.1
Name: p3dit
Version: 0.1
Summary: Simple text editor in Panda3D
Home-page: https://codeberg.org/entikan/p3dit
Author: jan Entikan
License: MIT
Keywords: panda3d gamedev
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Description-Content-Type: text/markdown
License-File: LICENSE.txt
Requires-Dist: panda3d
Requires-Dist: pygments
Requires-Dist: DirectFolderBrowser

A very simple nano/micro-like text editor inside Panda3d. Previously part of panda3d-livecode.

The purpose is to enable simple text editing inside Panda3D, not to create
an optimized all-round editor (though nice that would be).

It is still under construction. Certain features don't work as you'd expect.


To Install:
`pip install p3dit && p3dit`


Controls:
---------

- arrows/home/end/pgup/pgdown = move cursor
- shift+move = select
- ctrl+arrow  = move cursor per-word
- ctrl c/x/v  = copy/cut/paste
- ctrl-n 	  = new file
- ctrl-s 	  = save file
- ctrl-o      = open file
- ctrl-q      = close file
- ctrl-tab    = hide/show editor

Features:
---------
- Python code highlighting with pygments
- Folder browser with DirectFolderBrowser

Wishlist:
---------
- Python interpreter
- Terminal emulator through pyte
- Hot-reloading panda3d apps inside editor (like panda3d-livecode)


