Skip to content

Latest commit

 

History

History
27 lines (19 loc) · 305 Bytes

CHANGELOG.md

File metadata and controls

27 lines (19 loc) · 305 Bytes

2021/10/07

  • Removed ignore property of rules in favor of the action property.
{
  ignore = true
}

-- is equivalent to

{
  action = "ignore"
}

-- it is now possible to tell nog to always manage a matched window

{
  action = "manage"
}

-- default value

{
  action = "validate"
}