Git Product home page Git Product logo

telescope-emoji.nvim's Introduction

telescope-emoji.nvim's People

Contributors

kvietcong avatar oliverchao avatar xiyaowong avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar

telescope-emoji.nvim's Issues

Emojis doesn't show up on Windows Terminal

I'm using Windows Terminal & have loaded the extension as suggested, yet the emojis doesn't show up on the window. Any idea why is it so? Or at least can help me debug it further?

Also, just a heads up for you, I'm pretty sure Windows Terminal does support emojis because I've seen other terminal apps showing them. And I've attached a screenshot for your reference:

image

Insert the chosen emoji when picked

Hey thank you for taking the time to create this extension!

I have installed your extension and it seems to work great.

Because you expose the ability to configure what should be done when an emoji is chosen i was able to insert the emoji directly instead of having to put press p afterwards.

require("telescope-emoji").setup({
    action = function(emoji)
        vim.api.nvim_command(string.format(':call feedkeys("i"."%s")', emoji.value))
    end,
})

I'm unsure if the current design is what you want it to do, and if so that's fine, however if it is then maybe this functionality should be documented in the readme

How can i filter emojis by type?

hi. thanks for the amazing plugin. is it possible to filter emojis based on their type? so for example only symbol emojis are shown in telescope.

It isn't working for me

The plug-in is in fact loading, but it ins't loading my configuration, therefore not pasting anything. I've got my telescope settings such as:

table.insert(M, { 'nvim-telescope/telescope.nvim',
  dependencies = {
    "nvim-telescope/telescope.nvim",
    "nvim-lua/plenary.nvim",
    "debugloop/telescope-undo.nvim",

    "kelly-lin/telescope-ag",
    "xiyaowong/telescope-emoji.nvim",
    "ghassan0/telescope-glyph.nvim",
    "natecraddock/telescope-zf-native.nvim",
    "nvim-lua/plenary.nvim"
  },
  config = function()
    local telescope = require("telescope")
    local actions = require "telescope.actions"

    telescope.load_extension("zf-native")
    telescope.load_extension("emoji")
    telescope.load_extension("glyph")
    telescope.load_extension("ag")
    telescope.load_extension("undo")

    telescope.setup {
      defaults = {
        -- .... .....  ... 
      },
      extensions = {
        glyph = {
          action = function(emoji)
            -- vim.fn.setreg("*", emoji.value)
            vim.api.nvim_put({ emoji.value }, 'c', false, true)
          end,
        },
        emoji = {
          action = function(emoji)
            -- vim.fn.setreg("*", emoji.value)
            vim.api.nvim_put({ emoji.value }, 'c', false, true)
          end,
        }
      }
    }

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.