Code Monkey home page Code Monkey logo

webstorm-url-handler's Introduction

PhpStorm URL Handler

forked from phpstorm-url-handler .

This package contains a launcher to open files in PhpStorm at the defined line number and an associated desktop file that conforms to the Desktop Entry Specification for use in Gnome and KDE desktop environments.

Installation

The executable webstorm or wstorm must be in your $PATH. If it is not, either add the install location to your path

export PATH="/path/to/webstorm/bin/webstorm.sh:$PATH"

or symlink it to one of /usr/bin or /usr/local/bin - which already should be in your $PATH. Use sudo if needed

ln -s /path/to/webstorm/bin/webstorm.sh /usr/bin/webstorm

If you are installing Webstorm from JetBrains Toolbox. you can create a new path and point it to the toolbox shell scripts location i.e

export PATH="/home/$username/.local/share/JetBrains/Toolbox/scripts"

Then copy the actual handler to your $PATH and make it executable. Use sudo if needed

cp webstorm-url-handler /usr/bin/webstorm-url-handler
chmod +x /usr/bin/webstorm-url-handler

Install the .desktop file to register the mime-types. Use sudo if needed

desktop-file-install webstorm-url-handler.desktop
update-desktop-database

Usage

It can be used to open files at the specified line from within the browser by placing a link of the following kind in the markup:

<?php
$file = "/path/to/filename.php";
$line = 35;
print "<a href='webstorm://open?url=file://$file&line=$line'>Open with webstorm</a>";
// Alternate Syntax to match webstorm 8 for the Macintosh
print "<a href='webstorm://open?file=$file&line=$line'>Open with webstorm</a>";
?>

Command-line usage

FILE="/path/to/filename.php"
LINE=35
./webstorm-url-handler "webstorm://open?url=file://${FILE}&line=${LINE}"

This alternative syntax matches the format used by webstorm 8 for the Macintosh for cross-platform compatibility.

FILE="/path/to/filename.php"
LINE=35
./webstorm-url-handler "webstorm://open?file=${FILE}&line=${LINE}"

License

GNU GENERAL PUBLIC LICENSE

webstorm-url-handler's People

Contributors

sanduhrs avatar leogout avatar purwa-astawa avatar harcod avatar agentsib avatar xmarat avatar

Watchers

James Cloos avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.