ostinelli / SublimErl

An Erlang Plugin for Sublime Text 2, which enables code completion and allows you to run tests within the editor itself.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

lists:member is missing

aberman opened this issue · comments

  1. Open an erlang file
  2. Type 'lists:mem' or just type 'lists' and search for member

Actual result: lists:member does not exist in the completion drop down
Expected: lists:member should be included in the completion drop down

lists:keyfind is missing as well

The missing functions were BIFS, hence the parser was not able to find them.

Awesome!