I have some elips *.el
file in my ~/.emacs.d/gman/
folder, e.g. smart-inputp-methods.el
. This folder is added to my load path at the beginning of .emacs
file:
(add-to-list 'load-path "~/.emacs.d/gman")
Leter I importing it:
(require 'smart-input-methods)
Functions defined there successfully loaded, however Flycheck reports me error on that line, that file could not be found:
Cannot open load file: no such file or directory, smart-input-methods
This is quite annoying, how can I fix that?