Hoogle Search

Within LTS Haskell 24.40 (ghc-9.10.3)

Note that Stackage only displays results for the latest LTS and Nightly snapshot. Learn more.

  1. nvim_buf_get_keymap :: Buffer -> Text -> Neovim env (Vector (Map Text Object))

    nvim-hs Neovim.API.Text

    No documentation available.

  2. nvim_buf_set_keymap :: Buffer -> Text -> Text -> Text -> Map Text Object -> Neovim env ()

    nvim-hs Neovim.API.Text

    No documentation available.

  3. nvim_del_keymap :: Text -> Text -> Neovim env ()

    nvim-hs Neovim.API.Text

    No documentation available.

  4. nvim_get_color_map :: Neovim env (Map Text Object)

    nvim-hs Neovim.API.Text

    No documentation available.

  5. nvim_get_keymap :: Text -> Neovim env (Vector (Map Text Object))

    nvim-hs Neovim.API.Text

    No documentation available.

  6. nvim_set_keymap :: Text -> Text -> Text -> Map Text Object -> Neovim env ()

    nvim-hs Neovim.API.Text

    No documentation available.

  7. vim_get_color_map :: Neovim env (Map Text Object)

    nvim-hs Neovim.API.Text

    No documentation available.

  8. type FunctionMap = Map NvimMethod FunctionMapEntry

    nvim-hs Neovim.Context

    A function map is a map containing the names of functions as keys and some context dependent value which contains all the necessary information to execute that function in the intended way. This type is only used internally and handles two distinct cases. One case is a direct function call, wich is simply a function that accepts a list of Object values and returns a result in the Neovim context. The second case is calling a function that has a persistent state. This is mediated to a thread that reads from a TQueue. (NB: persistent currently means, that state is stored for as long as the plugin provider is running and not restarted.)

  9. type FunctionMapEntry = (FunctionalityDescription, FunctionType)

    nvim-hs Neovim.Context

    Type of the values stored in the function map.

  10. mkFunctionMap :: [FunctionMapEntry] -> FunctionMap

    nvim-hs Neovim.Context

    Create a new function map from the given list of FunctionMapEntry values.

Page 994 of many | Previous | Next