Aptivi - Deprecated Manuals
ProjectsWebsiteBlog
Nitrocid KS v0.1.0 Beta 2 - Manual
Nitrocid KS v0.1.0 Beta 2 - Manual
  • 👋Welcome!
  • Versions and Compatibility
    • 🔱Supported Versions
    • 🕘EOL Versions
    • 🗞️Version Release Notes
      • ✨v0.0.1.x series
      • 🌈v0.0.2.x series
      • 👥v0.0.3.x series
      • 🛠️v0.0.4.x series
      • 🕔v0.0.5.x series
        • ⌚v0.0.5.0 Beta Versions
      • 📕v0.0.6.x series
        • 📄v0.0.6.0 Beta Versions
      • 🔌v0.0.7.x series
        • ⚡v0.0.7.0 Beta Versions
      • 🌌v0.0.8.x series
      • 💌v0.0.9.x series
      • 📜v0.0.10.x series
      • ✏️v0.0.11.x series
      • ⚙️v0.0.12.x series
      • 🌐v0.0.13.x series
      • 🏃♀ v0.0.14.x series
      • ⏳v0.0.15.x series
      • ⭐v0.0.16.x series
      • 🌃v0.0.17.x series
      • 🥁v0.0.18.x series
      • 🔧v0.0.19.x series
      • 🍀v0.0.20.x series
      • 🧰v0.0.21.x series
      • 📱v0.0.22.x series
      • 🖥️v0.0.23.x series
      • 👾v0.0.24.x series
      • 🔮v0.1.x.x series
        • ⚠️Known issues for 0.1.0 Beta
    • 👍Compatibility Notes for KS API Revisions
      • 🔼Upgrading from API v1.0
      • 🔼Upgrading from API v1.1
      • 🔼Upgrading from API v1.2
      • 🔼Upgrading from API v1.3
      • 🔼Upgrading from API v2.0
      • 🔼Upgrading from API v2.1
      • 🔼Upgrading to API v3.0
  • Installation and Maintenance
    • 📀Installing the Kernel
      • 💻Windows
      • 🐧Linux
      • 📱Android
    • ⏫Upgrading the Kernel
      • 💻Windows
      • 🐧Linux
      • 📱Android
  • Fundamentals
    • 🌽What is the Kernel?
    • 👾What is Nitrocid KS?
    • 🌟Simulated Kernel Features
      • 👤Accounts
        • 🔓Permissions
      • 🐚Shells
      • 🌍Networking
        • 🗃️FTP Client
        • 🔒SFTP Client
        • 📰RSS Client
        • 🌐HTTP Client
        • 📧Mail Client
      • ✏️Editors
        • 📝Text Editor
        • 🖊️JSON Editor
        • 💾Hex Editor
      • 🇺🇸 Languages
      • 🌌Screensavers
      • 🎮Games and Amusements
        • 🔤Hangman
        • ☄️Meteor
        • 🐍Snaker
        • 🔢Solver
        • ⌨️SpeedPress
        • 🔠Wordle
      • 🗓️Calendar
      • ⏰Stopwatch and Timer
      • ⚖️Calculator and Converter
  • Advanced and Power Users
    • ⚒️Building the Kernel
      • 🪟Building on Windows
      • 🐧Building on Linux
    • 🧰Kernel Modifications
      • 🔧Kernel Modification Management
      • 🏗️Build your...
        • 🧪Your Mod
        • 🌌Your Screensaver
        • 🪄Your Splash
    • 🦠Diagnostics
      • 🔬Debugging
        • 🧬Local Debugging
        • 🛰️Remote Debugging
      • 🧪Testing
      • 💉Other Diagnostics
    • ⚒️Inner Workings
      • 🔧Kernel Settings
        • ⛏️Mechanics of Settings App
        • 🔩Settings Format
      • 🐚Shell Structure
        • ❔Help System
        • 🗜️Command Parsing
        • 📜Shell Scripting
      • 🪧Kernel Placeholders
      • 🔐The Permissions
      • 📞Kernel Threads
      • 🔌Kernel Drivers
      • ⚙️Multilingual Kernel Flow
      • 🌐Custom Languages
      • 📽️Presentation System
      • 🎛️Kernel Arguments
      • 📡Remote Procedure
    • 💿GRILO Bootloader and KS
  • 🧱Project Dependencies
  • Report an issue
  • Source code
  • API Reference
Powered by GitBook
On this page
Edit on GitHub
  1. Fundamentals
  2. Simulated Kernel Features
  3. Editors

Text Editor

Editing your text is easy!

Last updated 1 year ago

This text editor shell provides you an ability to edit any and all the text files. The edit command infers the file type whether it's the text file, the JSON file, or the binary file. It contains many editing tools described in the below section by invoking these commands.

Commands

These below commands can be used to interact with the text file:

  • addline <text>

    • Adds a new line with the specified text at the end of the text file

  • addlines

    • Adds new lines at the end of the text file

  • clear

    • Deletes the contents of the text file

  • delcharnum <charnumber> <linenumber>

    • Deletes a character using the column number from the specified line number

  • delline <linenumber> [linenumber2]

    • Deletes a specified line number or the range of line numbers

  • delword "<word/phrase>" <linenumber> [linenumber2]

    • Deletes a specified word or phrase in a line number or the range of line numbers

  • editline <linenumber>

    • Edits a line using a specified line number

  • exitnosave

    • Exits the text editor without saving any changes

  • print [linenumber] [linenumber2]

    • Print either the entire text file, a line number, or lines from the first line number to the second one

  • querychar <char> <linenumber/all> [linenumber2]

    • Queries a character in either the entire text file, a line number, or lines from the first line number to the second one

  • queryword "<word/phrase>" <linenumber/all> [linenumber2]

    • Queries a word in either the entire text file, a line number, or lines from the first line number to the second one

  • querywordregex "<regex>" <linenumber/all> [linenumber2]

    • Queries a word using the regular expressions in either the entire text file, a line number, or lines from the first line number to the second one

  • replace "<word/phrase>" "<word/phrase>"

    • Replaces a word or a phrase in the entire text file with another word or phrase

  • replaceinline "<word/phrase>" "<word/phrase>" <linenumber> [linenumber2]

    • Replaces a word or a phrase with another word or phrase in a line or lines from the first line number to the second one

  • replaceregex "<regex>" "<word/phrase>"

    • Replaces a word or a phrase in the entire text file with another word or phrase using regular expressions

  • replaceinlineregex "<regex>" "<word/phrase>" <linenumber> [linenumber2]

    • Replaces a word or a phrase with another word or phrase in a line or lines from the first line number to the second one using regular expressions

  • save

    • Saves the changes to the file

🌟
✏️
📝