Skip to content

Commit

Permalink
Merge pull request Flow-Launcher#2493 from NoPlagiarism/calc_add_oper…
Browse files Browse the repository at this point in the history
…ators

[Calculator] Add comparison operators & remainder
  • Loading branch information
taooceros authored Jan 17, 2024
2 parents 81bfd75 + 1020320 commit 1f99d0d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Plugins/Flow.Launcher.Plugin.Calculator/Main.cs
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,8 @@ public class Main : IPlugin, IPluginI18n, ISettingProvider
@"eigval|eigvec|eig|sum|polar|plot|round|sort|real|zeta|" +
@"bin2dec|hex2dec|oct2dec|" +
@"factorial|sign|isprime|isinfty|" +
@"==|~=|&&|\|\||" +
@"[ei]|[0-9]|[\+\-\*\/\^\., ""]|[\(\)\|\!\[\]]" +
@"==|~=|&&|\|\||(?:\<|\>)=?|" +
@"[ei]|[0-9]|[\+\%\-\*\/\^\., ""]|[\(\)\|\!\[\]]" +
@")+$", RegexOptions.Compiled);
private static readonly Regex RegBrackets = new Regex(@"[\(\)\[\]]", RegexOptions.Compiled);
private static Engine MagesEngine;
Expand Down

0 comments on commit 1f99d0d

Please sign in to comment.