How to Give Input in Sublime Text? Last Updated : 24 Jan, 2023 Summarize Comments Improve Suggest changes Share Like Article Like Report Prerequisite: How to Install Sublime Text3 in Windows? Sublime text is one of the most popular text editors out there. It's popular among programmers for its easy-to-use interface and attractive UI. Through the Sublime Input plugin, it is now easier to set up your C++ environment. Setting up Sublime Text with Sublime Input plugin Step 1: After installing Sublime Text, open the command palette by selecting Tools -> Command Palette or using Ctrl+Shift+P (for windows users) Step 2: Type Install package control to install the package controller for sublime text. The package controller helps in downloading different packages for sublime text. Step 3: Type Package Control: Install Package in the command palette and search for Sublime Input Plugin. Step 4: After installing the Sublime Input Plugin restart Sublime Text. Usage of Sublime Input Step 1: For using Sublime Input add a multiline comment above your code as shown below. C /*input 12 */ #include <stdio.h> int main() { int n; scanf("%d", &n); printf("You Entered: %d", n); return 0; } C++ /*input 12 */ #include <bits/stdc++.h> using namespace std; int main() { int n; cin >> n; cout << "You Entered: " << n << endl; } Python3 '''input 12 ''' val = input() print("You Entered ", val) Step 2: Use the Key-binding Ctrl+Alt+B or navigate to Tools -> SublimeInput - Build option. The result is shown in the below panel after running the code Comment More infoAdvertise with us Next Article How to Give Input in Sublime Text? A avi_singh Follow Improve Article Tags : TechTips Similar Reads How to Edit Text Files in Linux: Proven 3 Methods Need to tweak a file in Linux but not sure where to start? Editing text files in Linux is a handy skill that can help you fix settings, write scripts, or just note down notes all from your keyboard. This blog is here to help you get started, even if youâre new to Linux. Weâll show you simple ways to 4 min read How to Paste in Vim Editor from Notepad? Vim is a robust text editor found in many Unix-like systems. Copying text from an external source, such as Notepad, and copying it into Vim can be challenging, especially for inexperienced users. In normal mode, every character entered will be read as a command in Vim. Place the cursor where you wan 4 min read How to Indent Code in Vim Editor? Vim is a popular text editor used by many developers for writing code, creating readme files, and writing scripts. It's open-source and offers a lot of ways to customize your experience. This makes it easier and more efficient to work with. Properly formatting and indenting your code is important be 4 min read How to Create a File in VSCode using Terminal? Sometimes, commands like touch or New-Item may not work as expected in VS Code due to environment limitations or missing shell extensions. However, using simple terminal commands, you can easily create and edit files of any type right from VS Code. , Let's learn how to create new files using the cod 2 min read How to Use your Browser as a Text Editor? In this article, we will look into how you can use your browser as a text editor. To do so follow the below steps: Step 1: Open a new tab in your browser. Step 2: Paste the below-mentioned code in the search bar, and hit enter. data:text/html, <html contenteditable> That's all, you can note do 1 min read Like