Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

LuaMacro: mf.GetPersistent #733

Draft
wants to merge 1 commit into
base: master
Choose a base branch
from

Conversation

johnd0e
Copy link
Contributor

@johnd0e johnd0e commented Sep 20, 2023

by Shmuel: shmuz/far2m@a8f5778

data = mf.GetPersistent (strkey)

Parameters:
strkey: string

Returns:
data: table

Description:
GetPersistent returns a table that is created initially empty
by the plugin. This table may be used by macros, event handlers, etc.
for keeping data that should not be affected by reloading macrofiles.
The returned tables have a one—to—one correspondence with strkey
argument values .

Example:

  local data = mf.Getpersistent ("ED32D2 91-C69C-4111-BBBA-277DE00887D9")

by Shmuel: shmuz/far2m@a8f5778

data = mf.GetPersistent (strkey)

**Parameters:**
  strkey: string

**Returns:**
  data: table

**Description:**
  `GetPersistent` returns a table that is created initially empty
  by the plugin. This table may be used by macros, event handlers, etc.
  for keeping data that should not be affected by reloading macrofiles.
  The returned tables have a one—to—one correspondence with `strkey`
  argument values .

**Example:**
```
  local data = mf.Getpersistent ("ED32D2 91-C69C-4111-BBBA-277DE00887D9")
```
@sonarcloud
Copy link

sonarcloud bot commented Sep 20, 2023

Kudos, SonarCloud Quality Gate passed!    Quality Gate passed

Bug A 0 Bugs
Vulnerability A 0 Vulnerabilities
Security Hotspot A 0 Security Hotspots
Code Smell A 0 Code Smells

No Coverage information No Coverage information
2.6% 2.6% Duplication

@shmuz
Copy link
Contributor

shmuz commented Oct 13, 2023

Я сегодня убрал эту функцию. Причина - "it's not persistent enough".

@johnd0e
Copy link
Contributor Author

johnd0e commented Oct 14, 2023

Данные не сохраняются между запусками? Или что-то другое?

@shmuz
Copy link
Contributor

shmuz commented Oct 14, 2023

Как это обычно бывает, новая функциональность добавляется, чтобы решить какую-то задачу, удовлетворить какую-то хотелку. Данная функция была добавлена в связи с задачей запоминания и восстановления позиций меню плагинов и конфигурации между их вызовами. Поскольку перезагрузка макросов это ломала, я добавил данную функцию. Но вскоре ощутил, что мне нужно сохранять это и между сессиями Фара (как это сделано у меня в Фар3).

Когда я сделал это полностью "persistent", то обнаружил, что в моих скриптах не осталось ни одного применения mf.GetPersistent. Поэтому решил её убрать.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants