Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

LuaCATS/lpeg

Open more actions menu

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

63 Commits
63 Commits
 
 
 
 
 
 
 
 

Repository files navigation

Luarocks

Definitions for the LPeg library

Type definitions for the LPeg library.

Patterns vs. Captures

Functions and operators in LPeg can be split into two main groups. One that creates patterns and one that creates captures. The corresponding types are called Pattern and Capture. For example lpeg.P('a') returns a Pattern while lpeg.Cc('a') returns a Capture. Technically however, each capture is also a pattern. In other words Capture is an alias of Pattern.

Tooltips

Whether the tooltips of your editor display a capture type as Capture or Pattern depends on the hover.expandAlias setting in the configuration file of lua-language-server.

Here are two screenshots showing the different behavior. If hover.expandAlias is false, the tooltip for a function like lpeg.Cc() displays the return type as Capture:

hover.expandAlias equals false

If hover.expandAlias is true, the tooltip displays the return type as Pattern:

hover.expandAlias equals true

Configuration

Lua-language-server provides several configuration file for defining settings like hover.expandAlias, and they are all explained in the documentation of lua-language-server.

One way to configure it is the following: Create a JSON file .luarc.json in the top-level directory of your workspace with the following content. If this configuration file already exists, just add the expandAlias key.

{
   "Lua" : {
      "hover" : {
         "expandAlias" : false,
      },
   },
}

Contributors

Languages

Morty Proxy This is a proxified and sanitized view of the page, visit original site.