Automatically converts backslashes (\) to forward slashes (/) in the Windows clipboard.
Great for Python programming on Windows. Say goodbye to backslash problems!
- Real-time clipboard monitoring
- Backslash to forward slash conversion
- System tray icon for easy access
- Visual notification of substitutions
- Instant on/off substitution
- Clone or download the repository
- Install the dependencies:
pip install -r requirements.txt
- Run:
python SlashFixer.py
- Download the latest release
- Extract the zip file
- Run SlashFixer.exe
Note: Windows Defender or other anti-virus software may report the compiled .exe as a potential threat. This is a false positive due to the nature of compiled Python applications. The executable is safe to run. If you're concerned, you can view the source code and compile it yourself using the instructions below.
- Run the program:
- Source code:
python SlashFixer.py
. - Compiled binary: Double click on SlashFixer.exe
- Source code:
- Look for the "\w/" icon in the system tray.
- Replacement is enabled by default
- Copy text with backslashes; they'll be replaced automatically
- Right click on the tray icon to
- Toggle substitution
- Exit the program
Create a standalone executable using Nuitka:
- Install Nuitka:
pip install nuitka
- Compile:
nuitka --windows-disable-console --standalone --onefile --windows-icon-from-ico=icon.png SlashFixer.py
- Find the executable in the same directory
Note: Compilation may take a few minutes. The resulting file will be larger, but can be run without Python installed.
Important: Windows Defender or other anti-virus software may report the compiled .exe as a potential threat. This is a common false positive for compiled Python applications and is not a real security risk. You can safely add an exception for SlashFixer.exe in your antivirus software.
This program only runs on Windows systems.
Feel free to submit bug reports and feature requests.