Giter Site home page Giter Site logo

vn-os / 3rd-sublime_text_popup_extended Goto Github PK

View Code? Open in Web Editor NEW

This project forked from vic4key/sublime_text_popup_extended

0.0 0.0 0.0 51 KB

Extends the default SLT's pop-up for adding our content without override by a new one.

License: MIT License

Python 100.00%
popup sublime-text sublime-text-plugin

3rd-sublime_text_popup_extended's Introduction

Sublime Text Popup Extended

Extends the SLT's default pop-up for adding our content without override by a new one.

Usage

Go to Sublime Text X\Data\Packages\User\

git submodule add --force https://github.com/vic4key/sublime_text_popup_extended.git

Create a SLT plugin and use the following sample codes

from .sublime_text_popup_extended import *

def my_popup_content(view, point) -> list:
    result = []
    word = view.substr(view.word(point))
    result.append("You are hover on '%s'" % word)
    result.append("<a href=\"http://www.google.com/search?q=%s\">Search on Google for '%s'</a>" % (word, word))
    return result

def my_on_navigate(href) -> None:
    print("href = '%s'" % href)

def plugin_loaded():
    sublime_text_popup_extended.setup(
        heading_text="My Content",
        fn_popup_content=my_popup_content,
        fn_on_navigate=my_on_navigate)

Screenshots

Contact

Feel free to contact via Twitter / Gmail / Blog / Website

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.